├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── nsxt ├── nsxt-segments-existing │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf └── nsxt-segments-ondemand │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── renovate.json ├── vcd └── vcd-vapp-vm │ └── cloud-init-shell-script │ ├── main.tf │ ├── setup-script.sh │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vmware-cloud ├── vmc-activate-tanzu-service │ ├── main.tf │ ├── terraform.tfvars.example │ └── variables.tf ├── vmc-deploy-skyline-cp │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vmc-deploy-vra-cexp │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vmc-deploy-vra-cp │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vmc-deploy-vrli-cp │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vmc-deploy-vrni-cp │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf └── vmc-deploy-vrops-cp │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra ├── vra-bootstrap-aws-basic │ ├── main.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-cloud-account │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-cloud-template │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-content-item │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-content-source │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-fabric-network-existing │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-fabric-network-ondemand │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-flavor-mapping │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-image-mapping │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-network-profile-existing │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-network-profile-ondemand │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf ├── vra-project │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf └── vra-storage-profile │ ├── .gitignore │ ├── LICENSE │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf └── vsphere ├── vsphere-content-library-items-url ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-content-library-items-uuid ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-content-library-publishing ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-content-library-subscription-tanzu ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-content-library-subscription ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-drs-anti-affinity-rules ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-drs-vm-vm-rules ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-dvpg-vmk-nfs-workload ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-folders-management ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-folders-resource-pool-workload ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-ha-vm-host-groups-az-workload ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-ha-vm-overrides-management ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-resource-pool-parent-child └── main.tf ├── vsphere-role-packer ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-roles-vrealize ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-storage-nfs-datastore ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-storage-policy-tanzu ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── vsphere-virtual-disk └── main.tf └── vsphere-virtual-machine ├── clone-ovf-esxi-local-remote └── main.tf ├── clone-ovf-esxi-simple └── main.tf ├── clone-ovf-linux ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── clone-ovf-vcda ├── main.tf ├── terraform.tfvars ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── clone-template-linux-cidrhost └── main.tf ├── clone-template-linux-cloud-init ├── main.tf ├── metadata.yml ├── terraform.tfvars.example ├── userdata.yml ├── variables.tf └── versions.tf ├── clone-template-linux-guest-customization ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── clone-template-linux-nested-folder ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf ├── clone-template-windows-guest-customization ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf └── ovf-infoblox-ddi ├── main.tf ├── terraform.tfvars.example ├── variables.tf └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/README.md -------------------------------------------------------------------------------- /nsxt/nsxt-segments-existing/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-existing/main.tf -------------------------------------------------------------------------------- /nsxt/nsxt-segments-existing/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-existing/terraform.tfvars.example -------------------------------------------------------------------------------- /nsxt/nsxt-segments-existing/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-existing/variables.tf -------------------------------------------------------------------------------- /nsxt/nsxt-segments-existing/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-existing/versions.tf -------------------------------------------------------------------------------- /nsxt/nsxt-segments-ondemand/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-ondemand/main.tf -------------------------------------------------------------------------------- /nsxt/nsxt-segments-ondemand/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-ondemand/terraform.tfvars.example -------------------------------------------------------------------------------- /nsxt/nsxt-segments-ondemand/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-ondemand/variables.tf -------------------------------------------------------------------------------- /nsxt/nsxt-segments-ondemand/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/nsxt/nsxt-segments-ondemand/versions.tf -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/renovate.json -------------------------------------------------------------------------------- /vcd/vcd-vapp-vm/cloud-init-shell-script/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vcd/vcd-vapp-vm/cloud-init-shell-script/main.tf -------------------------------------------------------------------------------- /vcd/vcd-vapp-vm/cloud-init-shell-script/setup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vcd/vcd-vapp-vm/cloud-init-shell-script/setup-script.sh -------------------------------------------------------------------------------- /vcd/vcd-vapp-vm/cloud-init-shell-script/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vcd/vcd-vapp-vm/cloud-init-shell-script/terraform.tfvars.example -------------------------------------------------------------------------------- /vcd/vcd-vapp-vm/cloud-init-shell-script/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vcd/vcd-vapp-vm/cloud-init-shell-script/variables.tf -------------------------------------------------------------------------------- /vcd/vcd-vapp-vm/cloud-init-shell-script/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vcd/vcd-vapp-vm/cloud-init-shell-script/versions.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-activate-tanzu-service/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-activate-tanzu-service/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-activate-tanzu-service/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-activate-tanzu-service/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-activate-tanzu-service/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-activate-tanzu-service/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-skyline-cp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-skyline-cp/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-skyline-cp/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-skyline-cp/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-skyline-cp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-skyline-cp/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-skyline-cp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-skyline-cp/versions.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cexp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cexp/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cexp/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cexp/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cexp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cexp/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cexp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cexp/versions.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cp/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cp/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cp/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cp/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vra-cp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vra-cp/versions.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrli-cp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrli-cp/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrli-cp/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrli-cp/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrli-cp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrli-cp/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrli-cp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrli-cp/versions.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrni-cp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrni-cp/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrni-cp/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrni-cp/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrni-cp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrni-cp/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrni-cp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrni-cp/versions.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrops-cp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrops-cp/main.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrops-cp/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrops-cp/terraform.tfvars.example -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrops-cp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrops-cp/variables.tf -------------------------------------------------------------------------------- /vmware-cloud/vmc-deploy-vrops-cp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vmware-cloud/vmc-deploy-vrops-cp/versions.tf -------------------------------------------------------------------------------- /vra/vra-bootstrap-aws-basic/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-bootstrap-aws-basic/main.tf -------------------------------------------------------------------------------- /vra/vra-bootstrap-aws-basic/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-bootstrap-aws-basic/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-bootstrap-aws-basic/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-bootstrap-aws-basic/variables.tf -------------------------------------------------------------------------------- /vra/vra-bootstrap-aws-basic/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-bootstrap-aws-basic/versions.tf -------------------------------------------------------------------------------- /vra/vra-cloud-account/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/.gitignore -------------------------------------------------------------------------------- /vra/vra-cloud-account/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/LICENSE -------------------------------------------------------------------------------- /vra/vra-cloud-account/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/main.tf -------------------------------------------------------------------------------- /vra/vra-cloud-account/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/outputs.tf -------------------------------------------------------------------------------- /vra/vra-cloud-account/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-cloud-account/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/variables.tf -------------------------------------------------------------------------------- /vra/vra-cloud-account/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-account/versions.tf -------------------------------------------------------------------------------- /vra/vra-cloud-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/.gitignore -------------------------------------------------------------------------------- /vra/vra-cloud-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/LICENSE -------------------------------------------------------------------------------- /vra/vra-cloud-template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/main.tf -------------------------------------------------------------------------------- /vra/vra-cloud-template/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/outputs.tf -------------------------------------------------------------------------------- /vra/vra-cloud-template/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-cloud-template/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/variables.tf -------------------------------------------------------------------------------- /vra/vra-cloud-template/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-cloud-template/versions.tf -------------------------------------------------------------------------------- /vra/vra-content-item/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/.gitignore -------------------------------------------------------------------------------- /vra/vra-content-item/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/LICENSE -------------------------------------------------------------------------------- /vra/vra-content-item/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/main.tf -------------------------------------------------------------------------------- /vra/vra-content-item/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/outputs.tf -------------------------------------------------------------------------------- /vra/vra-content-item/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-content-item/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/variables.tf -------------------------------------------------------------------------------- /vra/vra-content-item/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-item/versions.tf -------------------------------------------------------------------------------- /vra/vra-content-source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/.gitignore -------------------------------------------------------------------------------- /vra/vra-content-source/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/LICENSE -------------------------------------------------------------------------------- /vra/vra-content-source/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/main.tf -------------------------------------------------------------------------------- /vra/vra-content-source/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/outputs.tf -------------------------------------------------------------------------------- /vra/vra-content-source/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-content-source/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/variables.tf -------------------------------------------------------------------------------- /vra/vra-content-source/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-content-source/versions.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/.gitignore -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/LICENSE -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/main.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/outputs.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/variables.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-existing/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-existing/versions.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/.gitignore -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/LICENSE -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/main.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/outputs.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/variables.tf -------------------------------------------------------------------------------- /vra/vra-fabric-network-ondemand/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-fabric-network-ondemand/versions.tf -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/.gitignore -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/LICENSE -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/main.tf -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/outputs.tf -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/variables.tf -------------------------------------------------------------------------------- /vra/vra-flavor-mapping/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-flavor-mapping/versions.tf -------------------------------------------------------------------------------- /vra/vra-image-mapping/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/.gitignore -------------------------------------------------------------------------------- /vra/vra-image-mapping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/LICENSE -------------------------------------------------------------------------------- /vra/vra-image-mapping/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/main.tf -------------------------------------------------------------------------------- /vra/vra-image-mapping/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/outputs.tf -------------------------------------------------------------------------------- /vra/vra-image-mapping/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-image-mapping/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/variables.tf -------------------------------------------------------------------------------- /vra/vra-image-mapping/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-image-mapping/versions.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/.gitignore -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/LICENSE -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/main.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/outputs.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/variables.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-existing/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-existing/versions.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/.gitignore -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/LICENSE -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/main.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/outputs.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/variables.tf -------------------------------------------------------------------------------- /vra/vra-network-profile-ondemand/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-network-profile-ondemand/versions.tf -------------------------------------------------------------------------------- /vra/vra-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/.gitignore -------------------------------------------------------------------------------- /vra/vra-project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/LICENSE -------------------------------------------------------------------------------- /vra/vra-project/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/main.tf -------------------------------------------------------------------------------- /vra/vra-project/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/outputs.tf -------------------------------------------------------------------------------- /vra/vra-project/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-project/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/variables.tf -------------------------------------------------------------------------------- /vra/vra-project/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-project/versions.tf -------------------------------------------------------------------------------- /vra/vra-storage-profile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/.gitignore -------------------------------------------------------------------------------- /vra/vra-storage-profile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/LICENSE -------------------------------------------------------------------------------- /vra/vra-storage-profile/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/main.tf -------------------------------------------------------------------------------- /vra/vra-storage-profile/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/outputs.tf -------------------------------------------------------------------------------- /vra/vra-storage-profile/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/terraform.tfvars.example -------------------------------------------------------------------------------- /vra/vra-storage-profile/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/variables.tf -------------------------------------------------------------------------------- /vra/vra-storage-profile/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vra/vra-storage-profile/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-url/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-url/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-url/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-url/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-url/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-url/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-url/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-url/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-uuid/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-uuid/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-uuid/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-uuid/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-uuid/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-uuid/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-items-uuid/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-items-uuid/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-publishing/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-publishing/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-publishing/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-publishing/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-publishing/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-publishing/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-publishing/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-publishing/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription-tanzu/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription-tanzu/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription-tanzu/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription-tanzu/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription-tanzu/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription-tanzu/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription-tanzu/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription-tanzu/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-content-library-subscription/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-content-library-subscription/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-drs-anti-affinity-rules/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-anti-affinity-rules/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-drs-anti-affinity-rules/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-anti-affinity-rules/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-drs-anti-affinity-rules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-anti-affinity-rules/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-drs-anti-affinity-rules/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-anti-affinity-rules/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-drs-vm-vm-rules/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-vm-vm-rules/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-drs-vm-vm-rules/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-vm-vm-rules/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-drs-vm-vm-rules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-vm-vm-rules/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-drs-vm-vm-rules/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-drs-vm-vm-rules/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-dvpg-vmk-nfs-workload/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-dvpg-vmk-nfs-workload/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-dvpg-vmk-nfs-workload/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-dvpg-vmk-nfs-workload/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-dvpg-vmk-nfs-workload/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-dvpg-vmk-nfs-workload/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-dvpg-vmk-nfs-workload/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-dvpg-vmk-nfs-workload/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-folders-management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-management/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-folders-management/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-management/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-folders-management/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-management/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-folders-management/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-management/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-folders-resource-pool-workload/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-resource-pool-workload/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-folders-resource-pool-workload/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-resource-pool-workload/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-folders-resource-pool-workload/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-resource-pool-workload/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-folders-resource-pool-workload/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-folders-resource-pool-workload/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-host-groups-az-workload/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-host-groups-az-workload/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-host-groups-az-workload/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-host-groups-az-workload/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-host-groups-az-workload/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-host-groups-az-workload/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-host-groups-az-workload/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-host-groups-az-workload/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-overrides-management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-overrides-management/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-overrides-management/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-overrides-management/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-overrides-management/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-overrides-management/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-ha-vm-overrides-management/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-ha-vm-overrides-management/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-resource-pool-parent-child/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-resource-pool-parent-child/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-role-packer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-role-packer/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-role-packer/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-role-packer/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-role-packer/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-role-packer/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-role-packer/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-role-packer/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-roles-vrealize/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-roles-vrealize/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-roles-vrealize/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-roles-vrealize/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-roles-vrealize/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-roles-vrealize/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-roles-vrealize/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-roles-vrealize/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-storage-nfs-datastore/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-nfs-datastore/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-storage-nfs-datastore/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-nfs-datastore/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-storage-nfs-datastore/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-nfs-datastore/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-storage-nfs-datastore/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-nfs-datastore/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-storage-policy-tanzu/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-policy-tanzu/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-storage-policy-tanzu/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-policy-tanzu/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-storage-policy-tanzu/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-policy-tanzu/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-storage-policy-tanzu/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-storage-policy-tanzu/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-disk/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-disk/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-esxi-local-remote/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-esxi-local-remote/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-esxi-simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-esxi-simple/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-linux/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-linux/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-linux/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-linux/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-linux/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-linux/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-linux/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-vcda/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-vcda/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-vcda/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-vcda/terraform.tfvars -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-vcda/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-vcda/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-vcda/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-vcda/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-ovf-vcda/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-ovf-vcda/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cidrhost/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cidrhost/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/metadata.yml -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/userdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/userdata.yml -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-cloud-init/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-guest-customization/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-linux-nested-folder/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/clone-template-windows-guest-customization/versions.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/main.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/terraform.tfvars.example -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/variables.tf -------------------------------------------------------------------------------- /vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenthirtyam/terraform-examples-vmware/HEAD/vsphere/vsphere-virtual-machine/ovf-infoblox-ddi/versions.tf --------------------------------------------------------------------------------