Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit dc13a826 authored by Kevin Coleman's avatar Kevin Coleman Committed by Kevin Coleman
Browse files

Adding sample user comments

parent 12c50e20
No related branches found
No related tags found
No related merge requests found
......@@ -142,6 +142,11 @@ module "eks-blueprints" {
platform_teams = {
admin = {
## Users Example:
# users = [
# "arn:aws:iam::<ACCOUNT_ID>:user/<USERNAME>",
# "arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>"
# ]
users = var.teams.admin_users
}
}
......@@ -169,7 +174,12 @@ module "eks-blueprints" {
}
## Manifests Example:
manifests_dir = "./manifests-team-red"
users = var.teams.team_red_users
## Users Example:
# users = [
# "arn:aws:iam::<ACCOUNT_ID>:user/<USERNAME>",
# "arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>"
# ]
users = var.teams.team_red_users
}
team-blue = {
......@@ -188,7 +198,12 @@ module "eks-blueprints" {
}
## Manifests Example:
manifests_dir = "./manifests-team-blue"
users = var.teams.team_blue_users
## Users Example:
# users = [
# "arn:aws:iam::<ACCOUNT_ID>:user/<USERNAME>",
# "arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>"
# ]
users = var.teams.team_blue_users
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment