-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathvariables.tf
More file actions
63 lines (49 loc) · 1.72 KB
/
variables.tf
File metadata and controls
63 lines (49 loc) · 1.72 KB
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 "region" {
description = "Region to deploy resources to"
}
variable "zone" {
description = "Zone to deploy resources to"
}
variable "project" {
description = "Project to deploy resources"
}
variable "public_ssh_key_file" {
description = "Location of the public part of the SSH key with which to access the management interface"
}
variable "management_subnet_cidr_block" {
description = "The CIDR block that will be used for the management subnet."
}
variable "client_subnet_cidr_block" {
description = "The CIDR block that will be used for the client subnet."
}
variable "server_subnet_cidr_block" {
description = "The CIDR block that will be used for the server subnet."
}
variable "controlling_subnet" {
description = "The CIDR block of the machines that will SSH to the NSIP"
}
variable "management_subnet_name" {
description = "Name for the management subnet"
default = "management-subnet"
}
variable "client_subnet_name" {
description = "Name for the client subnet"
default = "client-subnet"
}
variable "server_subnet_name" {
description = "Name for the server subnet"
default = "server-subnet"
}
variable "machine_type" {
description = "Instance type. Must allow for 3 NICs"
}
variable "image" {
description = "Image to use for boot disk. Must be an ADC image."
}
variable "zones" {
description = "List of two zones to deploy primary and secondary instance of HA pair."
}
variable "citrixadc_rpc_node_password" {
description = "The new ADC RPC node password that will replace the default one on both ADC instances. [Learn More about RPCNode](https://docs.citrix.com/en-us/citrix-adc/current-release/getting-started-with-citrix-adc/change-rpc-node-password.html)"
sensitive = true
}