-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
63 lines (53 loc) · 1.75 KB
/
variables.tf
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
variable "project_id" {
description = "GCP project ID"
default = null
}
variable "prefix" {
description = "Arbitrary string used to prefix resource names."
type = string
default = null
}
variable "region" {
description = "Google Cloud region for the created resources."
type = string
default = null
}
variable "public_key_path" {
description = "Local path to public SSH key. If you do not have a public key, run >> ssh-keygen -f ~/.ssh/demo-key -t rsa -C admin"
type = string
default = null
}
variable "vmseries_image_name" {
description = "The image name from which to boot an instance, including the license type and the version, e.g. vmseries-byol-814, vmseries-bundle1-814, vmseries-flex-bundle2-1001. Default is vmseries-flex-bundle1-913."
type = string
default = "vmseries-flex-bundle2-1017"
}
variable "mgmt_allow_ips" {
description = "A list of IP addresses to be added to the management network's ingress firewall rule. The IP addresses will be able to access to the VM-Series management interface."
type = list(string)
default = null
}
variable "cidr_mgmt" {
description = "The CIDR range of the management subnetwork."
type = string
default = null
}
variable "cidr_untrust" {
description = "The CIDR range of the untrust subnetwork."
type = string
default = null
}
variable "cidr_trust" {
description = "The CIDR range of the trust subnetwork."
type = string
default = null
}
variable "cidr_ha2" {
description = "The CIDR range of the ha2 subnetwork."
type = string
default = null
}
variable "create_workload_vm" {
description = "Set to true to create a workload VM for testing purposes."
default = true
}