We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can't use range 0-4094 as vlan id (typically used to create trunk segments).
This is permitted in the GUI and via policy API but not working in terraform
resource "nsxt_policy_vlan_segment" "S10000-TRUNK-UPLINK6" { display_name = "S10000-TRUNK-UPLINK6" description = "Trunk VLAN for Edge Hosts" transport_zone_path = data.nsxt_policy_transport_zone.tz-vlan.path vlan_ids = ["0-4094"] advanced_config { uplink_teaming_policy = "FailoverOnly" } }
Returns error -> Error: cannot convert 0-4094 to int
The text was updated successfully, but these errors were encountered:
Thanks for reporting this! Fixed with https://github.com/terraform-providers/terraform-provider-nsxt/pull/342
Sorry, something went wrong.
No branches or pull requests
can't use range 0-4094 as vlan id (typically used to create trunk segments).
This is permitted in the GUI and via policy API but not working in terraform
resource "nsxt_policy_vlan_segment" "S10000-TRUNK-UPLINK6" {
display_name = "S10000-TRUNK-UPLINK6"
description = "Trunk VLAN for Edge Hosts"
transport_zone_path = data.nsxt_policy_transport_zone.tz-vlan.path
vlan_ids = ["0-4094"]
advanced_config { uplink_teaming_policy = "FailoverOnly" }
}
Returns error -> Error: cannot convert 0-4094 to int
The text was updated successfully, but these errors were encountered: