From 1c88c77387375aa7cdcad4ca1ce6e5e01da27975 Mon Sep 17 00:00:00 2001 From: tuna Date: Tue, 3 Sep 2024 18:00:54 +0200 Subject: [PATCH] fix: necessary permissions for terraform --- terraform/cluster.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/cluster.tf b/terraform/cluster.tf index 1cf2f09..2209c9c 100644 --- a/terraform/cluster.tf +++ b/terraform/cluster.tf @@ -27,7 +27,7 @@ resource "google_container_cluster" "main" { } node_config { - + # 8 vcpu, 32 gb ram machine_type = "e2-standard-8" service_account = local.service_account_email # Retrieving the email of the service account from locals disk_size_gb = 10 # Setting disk size to 10 GB because of the free account quota limits