terraform-provider-google icon indicating copy to clipboard operation
terraform-provider-google copied to clipboard

google_compute_interconnect.requested_features should expect value 'IF_MACSEC'

Open imrannayer opened this issue 1 year ago • 0 comments

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
  • Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment.
  • If an issue is assigned to a user, that user is claiming responsibility for the issue.
  • Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.

Terraform Version & Provider Version(s)

Terraform v1.5.7 on darwin_arm64

  • provider registry.terraform.io/hashicorp/google v6.0.1

Affected Resource(s)

google_compute_interconnect

Terraform Configuration

resource "google_compute_interconnect" "example-interconnect" {
  project              = "prj1234"
  name                 = "example-interconnect"
  customer_name        = "example_customer"
  interconnect_type    = "DEDICATED"
  link_type            = "LINK_TYPE_ETHERNET_10G_LR"
  location             = "https://www.googleapis.com/compute/v1/projects/prj1234/global/interconnectLocations/iad-zone1-1"
  requested_link_count = 1
  macsec_enabled       = true
  macsec {
    pre_shared_keys {
      name = "test1287"
    }
  }
  requested_features = ["MACSEC"]
}

Debug Output

No response

Expected Behavior

According to doc value of requested_features should be IF_MACSEC. But TF is expecting MACSEC.

Actual Behavior

No response

Steps to reproduce

  1. terraform apply

Important Factoids

No response

References

No response

imrannayer avatar Aug 28 '24 17:08 imrannayer