github Twingate/terraform-provider-twingate v1.0.0

latest releases: v3.0.11, v3.0.10, v3.0.9...
17 months ago

Breaking change notice

  • As of v1.0.0, the group_ids argument is no longer supported within the twingate_resource resource. This functionality has been replaced by a new access block argument, which we will continue to enhance in the future. The group_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

  • Removed the deprecated group_ids argument in twingate_resource by @vmanilo in #290

Features

  • Added optional alias argument to twingate_resource resource by @vmanilo in #316

Full Changelog: v0.3.3...v1.0.0

Don't miss a new terraform-provider-twingate release

NewReleases is sending notifications on new releases.