-
-
Save mo6020/99c4553ddf413383b702fc0d6be7e4b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // these vars hidden in terraform.tfvars because they might be sensitive? | |
| variable "vc_user" {} | |
| variable "vc_password" {} | |
| variable "vc_server" {} | |
| variable "vc_domain" {} | |
| variable "vc_cluster" {} | |
| variable "vc_datacentre" {} | |
| // default VM Template | |
| variable "vm_template" { | |
| default = "centos7-template" | |
| } | |
| // default VM folder | |
| variable "vm_folder" { | |
| default = "Testing/SE-EMORGAN-Terraform" | |
| } | |
| // default VM network | |
| variable "vm_network" { | |
| default = "VLAN56_Servers_Test" | |
| } | |
| // default datastore | |
| variable "vm_datastore" { | |
| default = "pure-emea" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment