Skip to content

Instantly share code, notes, and snippets.

@vernak2539
Last active October 23, 2017 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vernak2539/fa38744a2f4428a8a785bc67f45c7846 to your computer and use it in GitHub Desktop.
Save vernak2539/fa38744a2f4428a8a785bc67f45c7846 to your computer and use it in GitHub Desktop.
terraform vsphere data source fail
data "vsphere_datacenter" "datacenter" {
name = "Sample DC"
}
module "app_vm" {
source = "../resource"
...
datacenter = "${data.vsphere_datacenter.datacenter.id}"
...
}
resource "vsphere_virtual_machine" "atlanta_linux_box" {
...
datacenter = "${var.datacenter}"
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment