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
Hi,
I have a VM, connected to two logical switches that I would like to tag the logical ports with.
data "vsphere_virtual_machine" "vm1" { name = "vsphere-nsxt-cluster-1" datacenter_id = data.vsphere_datacenter.dc.id }
resource "nsxt_vm_tags" "vm1_tags" { instance_id = data.vsphere_virtual_machine.vm1.id tag { scope = "ncp/cluster_name" tag = "terraform" } logical_port_tag { scope = "ncp/cluster_name" tag = "terraform" } }
When I check NSX-T, only the first interface has this applied:
This corresponds to the first interface that's shown in the VM config
Ideally, it would be nice to have the abilitiy to apply tags to specific interfaces, or at least, tag all interfaces associated with a VM.
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/235
Sorry, something went wrong.
No branches or pull requests
Hi,
I have a VM, connected to two logical switches that I would like to tag the logical ports with.
When I check NSX-T, only the first interface has this applied:
This corresponds to the first interface that's shown in the VM config
Ideally, it would be nice to have the abilitiy to apply tags to specific interfaces, or at least, tag all interfaces associated with a VM.
The text was updated successfully, but these errors were encountered: