Skip to content

v1.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Apr 17:29
· 193 commits to main since this release
76bda8a

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.
resourcetwingate_resource” “resource” {
  name = “network”
  address = “internal.intremote_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