Last active
October 23, 2017 10:33
-
-
Save vernak2539/fa38744a2f4428a8a785bc67f45c7846 to your computer and use it in GitHub Desktop.
terraform vsphere data source fail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data "vsphere_datacenter" "datacenter" { | |
name = "Sample DC" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "app_vm" { | |
source = "../resource" | |
... | |
datacenter = "${data.vsphere_datacenter.datacenter.id}" | |
... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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