-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
107 lines (89 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
variable "access_account_name" {
type = string
description = "Name of the access account to create on the Aviatrix Controller"
}
variable "aviatrix_controller_admin_email" {
type = string
description = "Aviatrix Controller admin email address"
}
variable "aviatrix_controller_admin_password" {
type = string
description = "Aviatrix Controller admin password"
}
variable "aviatrix_customer_id" {
type = string
description = "Customer license ID to initialize the Aviatrix Controller with"
}
variable "controller_machine_type" {
type = string
description = "The machine type to create the Aviatrix Controller"
default = "e2-standard-2"
}
variable "controller_name" {
type = string
description = "The Aviatrix Controller name"
default = "aviatrix-controller"
}
variable "controller_version" {
type = string
description = "Aviatrix Controller version"
default = "latest"
}
variable "gcloud_project_credentials_filepath" {
type = string
description = "Google Cloud project credentials filepath"
}
variable incoming_ssl_cidrs {
type = list(string)
description = "The CIDRs to be allowed for HTTPS(port 443) access to the Aviatrix Controller"
}
variable "network_name" {
type = string
description = "Name of the network to be created or an existing network"
default = "aviatrix-controller-network"
}
variable "service_account_email" {
type = string
description = "The Service Account to assign to the Aviatrix Controller"
default = ""
}
variable "service_account_scopes" {
type = list(string)
description = "The scopes to assign to the Aviatrix Controller's Service Account"
default = ["cloud-platform"]
}
variable "subnet_cidr" {
type = string
description = "The CIDR for the subnetwork this module will create"
default = "10.128.0.0/9"
}
variable "subnet_name" {
type = string
description = "Name of the subnetwork to be created or an existing subnetwork"
default = "aviatrix-controller-subnetwork"
}
variable "use_existing_network" {
type = bool
description = "Whether to use an existing network"
default = false
}
variable "ip_address_name" {
type = string
description = "Name of the compute address to be created"
default = "aviatrix-controller-address"
}
variable "firewall_name" {
type = string
description = "Name of the firewall to be created"
default = "aviatrix-controller-firewall"
}
variable "image" {
type = string
description = "The image from which to initialize this disk"
default = "aviatrix-public/avx-controller-gcp-2022-07-20"
}
variable "network_tags" {
type = set(string)
description = "Compute instance network tags"
default = ["controller"]
}