forked from terraform-google-modules/terraform-google-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
207 lines (183 loc) · 7.28 KB
/
main.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/**
* Copyright 2019 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.
*/
// This file was automatically generated from a template in ./autogen
locals {
healthchecks = concat(
google_compute_health_check.https.*.self_link,
google_compute_health_check.http.*.self_link,
google_compute_health_check.tcp.*.self_link,
)
distribution_policy_zones_base = {
default = data.google_compute_zones.available.names
user = var.distribution_policy_zones
}
distribution_policy_zones = local.distribution_policy_zones_base[length(var.distribution_policy_zones) == 0 ? "default" : "user"]
autoscaling_scale_in_enabled = var.autoscaling_scale_in_control.fixed_replicas != null || var.autoscaling_scale_in_control.percent_replicas != null
}
data "google_compute_zones" "available" {
project = var.project_id
region = var.region
}
resource "google_compute_region_instance_group_manager" "mig" {
provider = google-beta
base_instance_name = var.hostname
project = var.project_id
version {
name = "${var.hostname}-mig-version-0"
instance_template = var.instance_template
}
name = var.mig_name == "" ? "${var.hostname}-mig" : var.mig_name
region = var.region
dynamic "named_port" {
for_each = var.named_ports
content {
name = lookup(named_port.value, "name", null)
port = lookup(named_port.value, "port", null)
}
}
target_pools = var.target_pools
target_size = var.autoscaling_enabled ? null : var.target_size
wait_for_instances = var.wait_for_instances
dynamic "auto_healing_policies" {
for_each = local.healthchecks
content {
health_check = auto_healing_policies.value
initial_delay_sec = var.health_check["initial_delay_sec"]
}
}
dynamic "stateful_disk" {
for_each = var.stateful_disks
content {
device_name = stateful_disk.value.device_name
delete_rule = lookup(stateful_disk.value, "delete_rule", null)
}
}
distribution_policy_zones = local.distribution_policy_zones
dynamic "update_policy" {
for_each = var.update_policy
content {
instance_redistribution_type = lookup(update_policy.value, "instance_redistribution_type", null)
max_surge_fixed = lookup(update_policy.value, "max_surge_fixed", null)
max_surge_percent = lookup(update_policy.value, "max_surge_percent", null)
max_unavailable_fixed = lookup(update_policy.value, "max_unavailable_fixed", null)
max_unavailable_percent = lookup(update_policy.value, "max_unavailable_percent", null)
min_ready_sec = lookup(update_policy.value, "min_ready_sec", null)
replacement_method = lookup(update_policy.value, "replacement_method", null)
minimal_action = update_policy.value.minimal_action
type = update_policy.value.type
}
}
lifecycle {
create_before_destroy = true
ignore_changes = [distribution_policy_zones]
}
timeouts {
create = var.mig_timeouts.create
update = var.mig_timeouts.update
delete = var.mig_timeouts.delete
}
}
resource "google_compute_region_autoscaler" "autoscaler" {
provider = google
count = var.autoscaling_enabled ? 1 : 0
name = var.autoscaler_name == "" ? "${var.hostname}-autoscaler" : var.autoscaler_name
project = var.project_id
region = var.region
target = google_compute_region_instance_group_manager.mig.self_link
autoscaling_policy {
max_replicas = var.max_replicas
min_replicas = var.min_replicas
cooldown_period = var.cooldown_period
mode = var.autoscaling_mode
dynamic "scale_in_control" {
for_each = local.autoscaling_scale_in_enabled ? [var.autoscaling_scale_in_control] : []
content {
max_scaled_in_replicas {
fixed = lookup(scale_in_control.value, "fixed_replicas", null)
percent = lookup(scale_in_control.value, "percent_replicas", null)
}
time_window_sec = lookup(scale_in_control.value, "time_window_sec", null)
}
}
dynamic "cpu_utilization" {
for_each = var.autoscaling_cpu
content {
target = lookup(cpu_utilization.value, "target", null)
}
}
dynamic "metric" {
for_each = var.autoscaling_metric
content {
name = lookup(metric.value, "name", null)
target = lookup(metric.value, "target", null)
type = lookup(metric.value, "type", null)
}
}
dynamic "load_balancing_utilization" {
for_each = var.autoscaling_lb
content {
target = lookup(load_balancing_utilization.value, "target", null)
}
}
}
}
resource "google_compute_health_check" "https" {
count = var.health_check["type"] == "https" ? 1 : 0
project = var.project_id
name = var.health_check_name == "" ? "${var.hostname}-https-healthcheck" : var.health_check_name
check_interval_sec = var.health_check["check_interval_sec"]
healthy_threshold = var.health_check["healthy_threshold"]
timeout_sec = var.health_check["timeout_sec"]
unhealthy_threshold = var.health_check["unhealthy_threshold"]
https_health_check {
port = var.health_check["port"]
request_path = var.health_check["request_path"]
host = var.health_check["host"]
response = var.health_check["response"]
proxy_header = var.health_check["proxy_header"]
}
}
resource "google_compute_health_check" "http" {
count = var.health_check["type"] == "http" ? 1 : 0
project = var.project_id
name = var.health_check_name == "" ? "${var.hostname}-http-healthcheck" : var.health_check_name
check_interval_sec = var.health_check["check_interval_sec"]
healthy_threshold = var.health_check["healthy_threshold"]
timeout_sec = var.health_check["timeout_sec"]
unhealthy_threshold = var.health_check["unhealthy_threshold"]
http_health_check {
port = var.health_check["port"]
request_path = var.health_check["request_path"]
host = var.health_check["host"]
response = var.health_check["response"]
proxy_header = var.health_check["proxy_header"]
}
}
resource "google_compute_health_check" "tcp" {
count = var.health_check["type"] == "tcp" ? 1 : 0
project = var.project_id
name = var.health_check_name == "" ? "${var.hostname}-tcp-healthcheck" : var.health_check_name
timeout_sec = var.health_check["timeout_sec"]
check_interval_sec = var.health_check["check_interval_sec"]
healthy_threshold = var.health_check["healthy_threshold"]
unhealthy_threshold = var.health_check["unhealthy_threshold"]
tcp_health_check {
port = var.health_check["port"]
request = var.health_check["request"]
response = var.health_check["response"]
proxy_header = var.health_check["proxy_header"]
}
}