Breaking change notice
- As of v1.0.0, the
group_ids
argument is no longer supported within thetwingate_resource
resource. This functionality has been replaced by a newaccess
block argument, which we will continue to enhance in the future. Thegroup_ids
argument was marked as deprecated in v0.3.0. - The example below demonstrates how to migrate to the new
access
block for existing Terraform configurations.
resource “twingate_resource” “resource” {
name = “network”
address = “internal.int”
remote_network_id = twingate_remote_network.aws_network.id
# This argument is now invalid outside of the new access block
# group_ids = [twingate_group.aws.id]
access {
group_ids = [twingate_group.aws.id]
}
}
What's Changed
Breaking
Full Changelog: v0.3.3...v1.0.0-rc1