New vApp properties, ignoring deploymentoptions
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2021-02-03 14:20:39 +01:00
parent c3b4dceafc
commit fb8776bf84
1 changed files with 13 additions and 5 deletions

View File

@ -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" = ""
}
}