github Twingate/terraform-provider-twingate v0.3.2

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

Deprecation notice

  • As of v0.3.0, the group_ids argument is now deprecated in the twingate_resource resource. This functionality has been replaced by a new access block argument in this release, which we will continue to enhance in the future. The deprecated group_ids argument continues to work for now, so existing Terraform configurations will not be impacted, but this argument will be removed in a future release.
  • We encourage you to move to the new access block configuration as soon as possible. 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 deprecated outside of the new access block
  # group_ids = [twingate_group.aws.id]
  access {
    group_ids = [twingate_group.aws.id]
  }
}

What's Changed

Bug fixes

  • Resolved an issue where the is_visible and is_browser_shortcut_enabled arguments in the twingate_resource resource were not working as intended by @vmanilo in #285
  • Resolved a minor issue affecting retry logic for invalid provider configuration by @vmanilo in #283

Full Changelog: v0.3.1...v0.3.2

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

NewReleases is sending notifications on new releases.