Skip to content

Instantly share code, notes, and snippets.

@Calvinaud
Calvinaud / main.tf
Last active June 22, 2021 07:27
Terraform Vsphere bug destroy storage policy
provider "vsphere" {
user = var.vsphere_user
password = var.vsphere_password
vsphere_server = var.vsphere_server
allow_unverified_ssl = true
}
data "vsphere_tag_category" "policy_category" {
name = var.storage_policy_tag_category
}