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 7a24dc9 commit ac1c147Copy full SHA for ac1c147
infra/modules/agentcore-iam-role/bedrock-agentcore-policy.tf
@@ -111,6 +111,9 @@ resource "aws_iam_policy" "monitoring_permissions" {
111
]
112
},
113
{
114
+ # WILDCARD JUSTIFICATION: CloudWatch PutMetricData requires Resource="*"
115
+ # as per AWS documentation. Condition restricts to bedrock-agentcore namespace only.
116
+ # Reference: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricData.html
117
Effect = "Allow"
118
Resource = "*"
119
Action = "cloudwatch:PutMetricData"
0 commit comments