forked from IBM-Cloud/vmware-solutions-shared
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
34 lines (28 loc) · 751 Bytes
/
variables.tf
File metadata and controls
34 lines (28 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
variable "vcd_user" {
description = "vCloud Director username."
default = "admin"
}
variable "vcd_password" {
description = "vCloud Director instance password."
default = ""
}
variable "vcd_org" {
description = "vCloud Director organization name/id."
default = ""
}
variable "vcd_url" {
description = "vCloud Director url."
default = "https://daldir01.vmware-solutions.cloud.ibm.com/api"
}
variable "vdc_name" {
description = "vCloud Director virtual datacenter."
default = "vmware-tutorial"
}
variable "vdc_edge_gateway_name" {
description = "vCloud Director virtual datacenter edge gateway name."
default = ""
}
variable "allow_ssh" {
description = "Set to false to not configure SSH into the VM."
default = true
}