diff --git a/terraform/vm.tf b/terraform/vm.tf index d241dc8..07060d9 100644 --- a/terraform/vm.tf +++ b/terraform/vm.tf @@ -26,11 +26,19 @@ resource "vsphere_virtual_machine" "TF-SRV01" { vapp { properties = { - "guestinfo.hostname" = "TF-SRV01" - "guestinfo.ipaddress" = "10.0.0.42" - "guestinfo.prefixlength" = "24" - "guestinfo.dnsserver" = "10.0.0.5" - "guestinfo.gateway" = "10.0.0.1" + "deployment.type" = "standalone" + + "guestinfo.hostname" = "TF-SRV01" + "guestinfo.administratorpw" = "Secret123!" + "guestinfo.ntpserver" = "0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org" + "guestinfo.ipaddress" = "10.0.0.42" + "guestinfo.prefixlength" = "24" + "guestinfo.dnsserver" = "10.0.0.5" + "guestinfo.gateway" = "10.0.0.1" + + "addsconfig.domainname" = "" + "addsconfig.username" = "" + "addsconfig.password" = "" } }