# Packer.Images [![Build Status](https://ci.spamasaurus.com/api/badges/djpbessems/Packer.Images/status.svg?ref=refs/heads/Server2019)](https://ci.spamasaurus.com/djpbessems/Packer.Images)
This OVA appliance allows deploying a Windows Server fully automated; either as a domain member or stand-alone server.
The included `.ovf` file has the following XML contents (simplified for clarity) to facilitate the different `DeploymentOption`s:
```xml
vSphere 'Deploy OVF template...' wizard | HashiCorp Terraform vSphere provider |
```hcl vapp { properties = { # "deployment.type" = "domainmember" "guestinfo.hostname" = "SRV01" # "guestinfo.administratorpw" = var.vm_adminpassword # "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.21" "guestinfo.gateway" = "10.0.0.1" "addsconfig.domainname" = "contoso.com" "addsconfig.username" = "CONTOSO\\domainjoin" "addsconfig.password" = var.adds_password } } ``` |