forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
134 lines (127 loc) · 4.57 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
/**
* 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 "addons_config" {
description = "Addons configuration."
type = object({
advanced_api_ops = optional(bool, false)
api_security = optional(bool, false)
connectors_platform = optional(bool, false)
integration = optional(bool, false)
monetization = optional(bool, false)
})
default = null
}
variable "endpoint_attachments" {
description = "Endpoint attachments."
type = map(object({
region = string
service_attachment = string
}))
default = {}
nullable = false
}
variable "envgroups" {
description = "Environment groups (NAME => [HOSTNAMES])."
type = map(list(string))
default = {}
nullable = false
}
variable "environments" {
description = "Environments."
type = map(object({
api_proxy_type = optional(string)
description = optional(string, "Terraform-managed")
display_name = optional(string)
deployment_type = optional(string)
envgroups = optional(list(string), [])
forward_proxy_uri = optional(string)
iam = optional(map(list(string)), {})
iam_bindings = optional(map(object({
role = string
members = list(string)
})), {})
iam_bindings_additive = optional(map(object({
role = string
member = string
})), {})
node_config = optional(object({
min_node_count = optional(number)
max_node_count = optional(number)
}))
type = optional(string)
}))
default = {}
nullable = false
}
variable "instances" {
description = "Instances ([REGION] => [INSTANCE])."
type = map(object({
consumer_accept_list = optional(list(string))
description = optional(string, "Terraform-managed")
disk_encryption_key = optional(string)
display_name = optional(string)
enable_nat = optional(bool, false)
environments = optional(list(string), [])
name = optional(string)
runtime_ip_cidr_range = optional(string)
troubleshooting_ip_cidr_range = optional(string)
}))
validation {
condition = alltrue([
for k, v in var.instances :
# has troubleshooting_ip => has runtime_ip
v.runtime_ip_cidr_range != null || v.troubleshooting_ip_cidr_range == null
])
error_message = "Using a troubleshooting range requires specifying a runtime range too."
}
default = {}
nullable = false
}
variable "organization" {
description = "Apigee organization. If set to null the organization must already exist."
type = object({
analytics_region = optional(string)
api_consumer_data_encryption_key = optional(string)
api_consumer_data_location = optional(string)
authorized_network = optional(string)
billing_type = optional(string)
control_plane_encryption_key = optional(string)
database_encryption_key = optional(string)
description = optional(string, "Terraform-managed")
disable_vpc_peering = optional(bool, false)
display_name = optional(string)
properties = optional(map(string), {})
runtime_type = optional(string, "CLOUD")
retention = optional(string)
})
validation {
condition = var.organization == null || (
try(var.organization.runtime_type, null) == "CLOUD" || !try(var.organization.disable_vpc_peering, false)
)
error_message = "Disabling the VPC peering can only be done in organization using the CLOUD runtime."
}
validation {
condition = var.organization == null || (
try(var.organization.authorized_network, null) == null || !try(var.organization.disable_vpc_peering, false)
)
error_message = "Disabling the VPC peering is mutually exclusive with authorized_network."
}
default = null
}
variable "project_id" {
description = "Project ID."
type = string
}