Skip to content

Commit

Permalink
add missing "var."
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Mar 26, 2024
1 parent c875419 commit ba31940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/031-email-service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ resource "aws_iam_role_policy" "ses" {
}

resource "aws_iam_role_policy" "appconfig" {
count = app_id == "" ? 0 : 1
count = var.app_id == "" ? 0 : 1

name = "appconfig"
role = module.ecs_role.role_name
Expand Down

0 comments on commit ba31940

Please sign in to comment.