forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
144 lines (135 loc) · 3.65 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "backend_vm_configs" {
description = "The sample backend VMs configuration. Keys are the zones where VMs are deployed."
type = map(object({
address = string
instance_type = string
startup_script = string
}))
default = {
a = {
address = "192.168.100.101"
instance_type = "e2-micro"
startup_script = "apt update && apt install -y nginx"
}
b = {
address = "192.168.100.102"
instance_type = "e2-micro"
startup_script = "apt update && apt install -y nginx"
}
}
}
variable "forwarding_rules_config" {
type = map(any)
description = "The optional configurations of the GCP load balancers forwarding rules."
default = {
"ipv4" = {
address = "192.168.100.100"
protocol = "TCP"
}
"ipv6" = {
ip_version = "IPV6"
}
}
}
variable "instance_dedicated_configs" {
description = "The F5 VMs configuration. The map keys are the zones where the VMs are deployed."
type = map(any)
default = {
a = {
license_key = "AAAAA-BBBBB-CCCCC-DDDDD-EEEEEEE"
network_config = {
alias_ip_range_address = "192.168.101.0/24"
alias_ip_range_name = "f5-a"
}
}
b = {
license_key = "AAAAA-BBBBB-CCCCC-DDDDD-EEEEEEE"
network_config = {
alias_ip_range_address = "192.168.102.0/24"
alias_ip_range_name = "f5-b"
}
}
}
}
variable "instance_shared_config" {
description = "The F5 VMs shared configurations."
type = map(any)
default = {
enable_ipv6 = true
ssh_public_key = "./data/mykey.pub"
}
}
variable "prefix" {
type = string
description = "The name prefix used for resources."
}
variable "project_create" {
description = "Whether to automatically create a project."
type = bool
default = false
}
variable "project_id" {
type = string
description = "The project id where we deploy the resources."
}
variable "region" {
type = string
description = "The region where we deploy the F5 IPs."
}
variable "vpc_config" {
description = "VPC and subnet ids, in case existing VPCs are used."
type = object({
backend_vms_cidr = string # used by F5s. Not configured on the VPC.
dataplane = object({
subnets = map(object({
cidr = optional(string)
secondary_ip_ranges = optional(map(string)) # name -> cidr
}))
})
management = object({
subnets = map(object({
cidr = optional(string)
secondary_ip_ranges = optional(map(string)) # name -> cidr
}))
})
})
default = {
backend_vms_cidr = "192.168.200.0/24"
dataplane = {
subnets = {
clients = {
cidr = "192.168.0.0/24"
}
dataplane = {
cidr = "192.168.100.0/24"
secondary_ip_ranges = {
f5-a = "192.168.101.0/24"
f5-b = "192.168.102.0/24"
}
}
}
}
management = {
subnets = {
management = {
cidr = "192.168.250.0/24"
}
}
}
}
}