Skip to content

Commit

Permalink
BFD-2884: Allow listing of SSM parameters (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithdadkins authored Sep 11, 2023
1 parent f8cb244 commit 6cc369a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ops/terraform/env/mgmt/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,17 @@ resource "aws_iam_policy" "bfd_ssm_ro" {
{
"Statement": [
{
"Sid": "ListParameters",
"Action": [
"ssm:DescribeParameters"
],
"Effect": "Allow",
"Resource": [
"arn:aws:ssm:us-east-1:${local.account_id}:*"
]
},
{
"Sid": "AllowReadBFDParams",
"Action": [
"ssm:GetParametersByPath",
"ssm:GetParameters",
Expand All @@ -377,6 +388,7 @@ resource "aws_iam_policy" "bfd_ssm_ro" {
]
},
{
"Sid": "AllowKeyUsage",
"Action": [
"kms:Decrypt"
],
Expand Down

0 comments on commit 6cc369a

Please sign in to comment.