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
cloudavenue_security_tag
Provides a VMware Cloud Director SECURITY_TAG resource. This can be used to create, modify, and delete SECURITY_TAG.
resource "vcd_catalog" "myNewCatalog" { name = "my-catalog_romain" description = "catalog for files" delete_recursive = true delete_force = true } data "vcd_catalog" "cat-datacloud" { name = "my-catalog_romain" } data "vcd_catalog_vapp_template" "debian_10_X64" { catalog_id = data.vcd_catalog.cat-datacloud.id name = "debian_10_X64" } resource "vcd_vm" "TestVm" { name = "TestVm_romain" vapp_template_id = data.vcd_catalog_vapp_template.debian_10_X64.id cpus = 2 memory = 2048 } resource "vcd_security_tag" "my_tag" { name = "test-tag-romain" vm_ids = [vcd_vm.TestVm.id] }
https://registry.terraform.io/providers/vmware/vcd/latest/docs/resources/security_tag
None
The text was updated successfully, but these errors were encountered:
Require template "debian_10_X64" in catalog
Sorry, something went wrong.
Blocked by #94
valentin-dubreuil
Successfully merging a pull request may close this issue.
Description
Provides a VMware Cloud Director SECURITY_TAG resource. This can be used to create, modify, and delete SECURITY_TAG.
Requested Resource(s) and/or Data Source(s)
cloudavenue_security_tag
Potential Terraform Configuration
References
https://registry.terraform.io/providers/vmware/vcd/latest/docs/resources/security_tag
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: