We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f57107 commit 9b6b182Copy full SHA for 9b6b182
1 file changed
infrastructure/stacks/iams-developer-roles/github_actions_policies.tf
@@ -447,11 +447,17 @@ resource "aws_iam_policy" "firehose_readonly" {
447
Statement = [
448
{
449
Effect = "Allow",
450
- Action = [
+ actions = [
451
+ "firehose:CreateDeliveryStream",
452
+ "firehose:DeleteDeliveryStream",
453
"firehose:DescribeDeliveryStream",
454
+ "firehose:UpdateDestination",
455
+ "firehose:PutRecord",
456
+ "firehose:PutRecordBatch",
457
+ "firehose:TagDeliveryStream",
458
"firehose:ListTagsForDeliveryStream",
- "firehose:TagDeliveryStream"
- ],
459
+ "firehose:UntagDeliveryStream"
460
+ ]
461
Resource = "arn:aws:firehose:${var.default_aws_region}:${data.aws_caller_identity.current.account_id}:deliverystream/eligibility-signposting-api*"
462
}
463
]
0 commit comments