Skip to content

Commit

Permalink
fix: comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tunacinsoy committed Aug 22, 2024
1 parent 5985f7d commit 253497a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ resource "google_service_account" "main" {
display_name = "GKE Cluster ${var.cluster_name}-${var.branch} Service Account"
}

After the creation of service account, the email attribute will be exposed automatically.
With locals definition, it will be more readable for users to see which attributes are created.
#After the creation of service account, the email attribute will be exposed automatically.
#With locals definition, it will be more readable for users to see which attributes are created.
locals {
service_account_email = google_service_account.main.email
}
Expand Down

0 comments on commit 253497a

Please sign in to comment.