Skip to content

Commit

Permalink
fix: Correct teams patterns use of multi-team namespace creation (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sylwit authored Jun 8, 2023
1 parent 17bcf72 commit a7ec605
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/multi-tenancy-with-teams/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ module "eks_blueprints_dev_teams" {
}

namespaces = {
"blue-${each.key}" = {
"team-${each.key}" = {
labels = {
appName = "blue-team-app",
projectName = "project-blue",
appName = "${each.key}-team-app",
projectName = "project-${each.key}",
}

resource_quota = {
Expand Down

0 comments on commit a7ec605

Please sign in to comment.