Skip to content

Commit

Permalink
remove quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
augustfengd committed Oct 18, 2024
1 parent 020bb54 commit c2e1a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloud/terraform/kubernetes.tf
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
resource "kubernetes_namespace" "blog" {
depends_on = ["google_container_cluster.augustfeng-app"]
depends_on = [google_container_cluster.augustfeng-app]

metadata {
name = "blog"
}
}

resource "kubernetes_namespace" "system-ingress" {
depends_on = ["google_container_cluster.augustfeng-app"]
depends_on = [google_container_cluster.augustfeng-app]

metadata {
name = "system-ingress"
}
}

resource "kubernetes_namespace" "system-monitoring" {
depends_on = ["google_container_cluster.augustfeng-app"]
depends_on = [google_container_cluster.augustfeng-app]

metadata {
name = "system-monitoring"
Expand Down

0 comments on commit c2e1a33

Please sign in to comment.