We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825adee commit a8702beCopy full SHA for a8702be
terraform/team-members-access/infra-team.tf
@@ -19,3 +19,9 @@ resource "aws_iam_group_policy_attachment" "infra_team_iam_access" {
19
group = aws_iam_group.infra_team.name
20
policy_arn = "arn:aws:iam::aws:policy/IAMReadOnlyAccess"
21
}
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