Skip to content

Commit

Permalink
feat: add cluster secret labels
Browse files Browse the repository at this point in the history
  • Loading branch information
incubator4 committed Aug 1, 2024
1 parent 4fb0dba commit a1fb99d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ resource "argocd_cluster" "dev" {
metadata {
labels = {
"env" = "dev"
"secret" = "avp-dev"
"provider" = "gcp"
"cluster-type" = "gke-standard"
"tenant" = "1"
Expand Down Expand Up @@ -32,6 +33,7 @@ resource "argocd_cluster" "prod" {
metadata {
labels = {
"env" = "prod"
"secret" = "avp-prod"
"provider" = "gcp"
"cluster-type" = "gke-standard"
"tenant" = "2"
Expand Down Expand Up @@ -59,6 +61,7 @@ resource "argocd_cluster" "ops" {
metadata {
labels = {
"env" = "ops"
"secret" = "avp-prod"
"provider" = "gcp"
"cluster-type" = "gke-autopilot"
"tenant" = "0"
Expand Down

0 comments on commit a1fb99d

Please sign in to comment.