Skip to content

Commit

Permalink
add role = workload tag to workload clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 3, 2024
1 parent f297f03 commit 27afe00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions terraform/modules/clusters/aws/plural.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ resource "plural_cluster" "this" {
tags = {
fleet = var.fleet
tier = var.tier
role = "workload"
}

metadata = jsonencode({
Expand Down
1 change: 1 addition & 0 deletions terraform/modules/clusters/gcp/plural.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ resource "plural_cluster" "this" {
tags = {
tier = var.tier
fleet = var.fleet
role = "workload"
}

kubeconfig = {
Expand Down
1 change: 1 addition & 0 deletions terraform/modules/clusters/linode/plural.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ resource "plural_cluster" "this" {
tags = {
tier = var.tier
fleet = var.fleet
role = "workload"
}

kubeconfig = {
Expand Down

0 comments on commit 27afe00

Please sign in to comment.