File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ terraform {
3
3
# Set the resource group in the backend configuration below, then uncomment and apply!
4
4
# Note that you probably already create a resource group. Don't forget to set that correctly in this file.
5
5
backend "gcs" {
6
- bucket = " tfstate-wrongsecrets-4d4c5bc1 "
6
+ bucket = " "
7
7
prefix = " terraform/state"
8
8
}
9
9
}
@@ -61,15 +61,15 @@ resource "google_container_cluster" "gke" {
61
61
enabled = true
62
62
resource_limits {
63
63
resource_type = " cpu"
64
- minimum = 1
65
- maximum = 10
64
+ minimum = 2 # 1 node * 2 vCPU (e2-standard-2)
65
+ maximum = 20 # 10 nodes * 2 vCPU (e2-standard-2)
66
66
67
67
}
68
68
69
69
resource_limits {
70
70
resource_type = " memory"
71
- minimum = 1
72
- maximum = 64
71
+ minimum = 8 # 1 node * 8 GB (e2-standard-2)
72
+ maximum = 80 # 10 nodes * 8 GB (e2-standard-2)
73
73
74
74
}
75
75
You can’t perform that action at this time.
0 commit comments