Skip to content

Commit

Permalink
fix: Gateway-api-controller lacks permissions to create and describe …
Browse files Browse the repository at this point in the history
…required resources (#329)

Co-authored-by: ruban suthan <[email protected]>
  • Loading branch information
neelaruban and rubanracker authored Dec 7, 2023
1 parent 0e9d6c9 commit 1f7cf9c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3564,7 +3564,14 @@ data "aws_iam_policy_document" "aws_gateway_api_controller" {
"iam:CreateServiceLinkedRole",
"ec2:DescribeVpcs",
"ec2:DescribeSubnets",
"ec2:DescribeTags"
"ec2:DescribeTags",
"ec2:DescribeSecurityGroups",
"logs:CreateLogDelivery",
"logs:GetLogDelivery",
"logs:UpdateLogDelivery",
"logs:DeleteLogDelivery",
"logs:ListLogDeliveries",
"tag:GetResources"
]
resources = ["*"]
}
Expand Down

0 comments on commit 1f7cf9c

Please sign in to comment.