-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnoteit.tfvars
More file actions
40 lines (37 loc) · 874 Bytes
/
Copy pathnoteit.tfvars
File metadata and controls
40 lines (37 loc) · 874 Bytes
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
#Common Values
environment = "staging"
tags = {
"env" = "staging"
"app" = "noteit"
"deploymenttype" = "kubernetes-gke"
}
#VPC Values
region = "us-central1"
vpc_name = "noteit"
subnet_details = {
subnet_1 = {
name = "noteit-subnet-1"
cidr = "10.0.1.0/24"
}
subnet_2 = {
name = "noteit-subnet-2"
cidr = "10.0.2.0/24"
}
}
vpc_default_firewall_ports = ["80", "443"]
vpc_default_firewall_cidr_blocks = ["0.0.0.0/0"]
#GKE Cluster Values
gke_cluster_name = "noteit"
cluster_location = "us-central1-a"
node_pool_name = "noteit"
node_count = 2
node_machine_type = "e2-medium"
gke_ip_allocation_cidrs = {
"cluster" = "/14"
"service" = "/20"
}
gke_node_sva_roles = {
"storage" = "storage.objectViewer"
"artifact" = "artifactregistry.reader"
"operations" = "container.defaultNodeServiceAccount"
}