├── .github └── stale.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── README.md ├── example-Windows-data_disk.tf ├── example-linux-Network.tf ├── example-linux-depend_on.tf └── example-vmname.tf ├── main.tf ├── output.tf ├── tests ├── sanity │ ├── .terraform.lock.hcl │ ├── README.md │ ├── apply.sh │ ├── cleanup.sh │ ├── connection.tf │ ├── main.tf │ └── plan.sh └── smoke │ ├── .terraform.lock.hcl │ ├── README.md │ ├── apply.sh │ ├── connection.tf │ ├── main.tf │ └── plan.sh ├── variables.tf └── versions.tf /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example-Windows-data_disk.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/examples/example-Windows-data_disk.tf -------------------------------------------------------------------------------- /examples/example-linux-Network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/examples/example-linux-Network.tf -------------------------------------------------------------------------------- /examples/example-linux-depend_on.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/examples/example-linux-depend_on.tf -------------------------------------------------------------------------------- /examples/example-vmname.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/examples/example-vmname.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/main.tf -------------------------------------------------------------------------------- /output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/output.tf -------------------------------------------------------------------------------- /tests/sanity/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/.terraform.lock.hcl -------------------------------------------------------------------------------- /tests/sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/README.md -------------------------------------------------------------------------------- /tests/sanity/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/apply.sh -------------------------------------------------------------------------------- /tests/sanity/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/cleanup.sh -------------------------------------------------------------------------------- /tests/sanity/connection.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/connection.tf -------------------------------------------------------------------------------- /tests/sanity/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/main.tf -------------------------------------------------------------------------------- /tests/sanity/plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/sanity/plan.sh -------------------------------------------------------------------------------- /tests/smoke/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/smoke/.terraform.lock.hcl -------------------------------------------------------------------------------- /tests/smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/smoke/README.md -------------------------------------------------------------------------------- /tests/smoke/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/smoke/apply.sh -------------------------------------------------------------------------------- /tests/smoke/connection.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/smoke/connection.tf -------------------------------------------------------------------------------- /tests/smoke/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/smoke/main.tf -------------------------------------------------------------------------------- /tests/smoke/plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/tests/smoke/plan.sh -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terraform-VMWare-Modules/terraform-vsphere-vm/HEAD/versions.tf --------------------------------------------------------------------------------