Skip to content

Commit

Permalink
chore: fix typo on aws iam (#141)
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Turrado <[email protected]>
  • Loading branch information
JorTurFer authored Jan 1, 2024
1 parent c324877 commit d531043
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions terraform/modules/aws/iam/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -227,14 +227,16 @@ resource "aws_iam_role" "workload1_role" {
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": {
"Sid" : "",
"Effect" : "Allow"
"Action" : "sts:AssumeRole",
"Principal" : {
"AWS" : ${aws_iam_role.keda_role.arn}
}
}
"Statement": [
{
"Sid" : "",
"Effect" : "Allow",
"Action" : "sts:AssumeRole",
"Principal" : {
"AWS" : "${aws_iam_role.keda_role.arn}"
}
}
]
}
EOF
}
Expand Down

0 comments on commit d531043

Please sign in to comment.