Skip to content

Commit a8702be

Browse files
rylevMark-Simulacrum
authored andcommitted
Give infra team members read only access to route53
1 parent 825adee commit a8702be

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

terraform/team-members-access/infra-team.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,9 @@ resource "aws_iam_group_policy_attachment" "infra_team_iam_access" {
1919
group = aws_iam_group.infra_team.name
2020
policy_arn = "arn:aws:iam::aws:policy/IAMReadOnlyAccess"
2121
}
22+
23+
// Infra team members are allowed to have read access to Route53
24+
resource "aws_iam_group_policy_attachment" "infra_team_route53_access" {
25+
group = aws_iam_group.infra_team.name
26+
policy_arn = "arn:aws:iam::aws:policy/AmazonRoute53ReadOnlyAccess"
27+
}

0 commit comments

Comments
 (0)