forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
104 lines (99 loc) · 3.58 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
/**
* Copyright 2024 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.
*/
locals {
spanner_instance = (
var.instance_create
? google_spanner_instance.spanner_instance[0]
: data.google_spanner_instance.spanner_instance[0]
)
}
resource "google_spanner_instance_config" "spanner_instance_config" {
count = try(var.instance.config.auto_create, null) == null ? 0 : 1
name = var.instance.config.name
project = var.project_id
display_name = coalesce(
var.instance.config.auto_create.display_name, var.instance.config.name
)
base_config = var.instance.config.auto_create.base_config
dynamic "replicas" {
for_each = var.instance.config.auto_create.replicas
content {
location = replicas.value.location
type = replicas.value.type
default_leader_location = replicas.value.default_leader_location
}
}
labels = var.instance.config.auto_create.labels
}
data "google_spanner_instance" "spanner_instance" {
count = var.instance_create ? 0 : 1
project = var.project_id
name = var.instance.name
}
resource "google_spanner_instance" "spanner_instance" {
count = var.instance_create ? 1 : 0
project = var.project_id
config = (
var.instance.config.auto_create == null
? var.instance.config.name
: google_spanner_instance_config.spanner_instance_config[0].name
)
name = var.instance.name
display_name = coalesce(var.instance.display_name, var.instance.name)
num_nodes = var.instance.num_nodes
labels = var.instance.labels
force_destroy = var.instance.force_destroy
processing_units = var.instance.processing_units
dynamic "autoscaling_config" {
for_each = var.instance.autoscaling == null ? [] : [""]
content {
dynamic "autoscaling_limits" {
for_each = var.instance.autoscaling.limits == null ? [] : [""]
content {
max_processing_units = var.instance.autoscaling.limits.max_processing_units
min_processing_units = var.instance.autoscaling.limits.min_processing_units
}
}
dynamic "autoscaling_targets" {
for_each = var.instance.autoscaling.targets == null ? [] : [""]
content {
high_priority_cpu_utilization_percent = (
var.instance.autoscaling.targets.high_priority_cpu_utilization_percent
)
storage_utilization_percent = (
var.instance.autoscaling.targets.storage_utilization_percent
)
}
}
}
}
}
resource "google_spanner_database" "spanner_databases" {
for_each = var.databases
project = var.project_id
instance = local.spanner_instance.name
name = each.key
ddl = each.value.ddl
enable_drop_protection = each.value.enable_drop_protection
deletion_protection = false
version_retention_period = each.value.version_retention_period
dynamic "encryption_config" {
for_each = each.value.kms_key_name == null ? [] : [""]
content {
kms_key_name = each.value.kms_key_name
}
}
}