Skip to content

Commit d87989d

Browse files
committed
update terraform files with 1.30 gke and other gcloud updates
1 parent 6cb712c commit d87989d

File tree

5 files changed

+22
-2
lines changed

5 files changed

+22
-2
lines changed

infrastructure/terraform/.terraform.lock.hcl

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": 3,
3+
"terraform_version": "1.9.3",
4+
"backend": {
5+
"type": "gcs",
6+
"config": {
7+
"access_token": null,
8+
"bucket": "p5js-terraform-state",
9+
"credentials": null,
10+
"encryption_key": null,
11+
"impersonate_service_account": null,
12+
"impersonate_service_account_delegates": null,
13+
"kms_encryption_key": null,
14+
"prefix": "terraform/state",
15+
"storage_custom_endpoint": null
16+
},
17+
"hash": 3505575224
18+
}
19+
}

infrastructure/terraform/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ resource "google_container_node_pool" "primary" {
2626
location = var.region
2727
cluster = google_container_cluster.primary.name
2828
version = var.gke_version
29-
node_count = 1
29+
node_count = 3
3030

3131
node_config {
3232
disk_size_gb = 100

infrastructure/terraform/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ variable "region" {
1010

1111
variable "gke_version" {
1212
type = string
13-
default = "1.22.8-gke.200"
13+
default = "1.30.8-gke.1261000"
1414
}

0 commit comments

Comments
 (0)