Skip to content

Commit

Permalink
Merge pull request #2 from ministryofjustice/bugfixes
Browse files Browse the repository at this point in the history
remove quote around var name
  • Loading branch information
mtrbls authored Jan 8, 2021
2 parents 1705fe4 + 4521367 commit 7ffbaf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "aws_flow_log" "eni_log" {


resource "aws_iam_role" "flow_logs_role" {
name = "local.name"
name = local.name

assume_role_policy = <<EOF
{
Expand All @@ -57,7 +57,7 @@ EOF
}

resource "aws_iam_role_policy" "flow_logs_policy" {
name = "local.name"
name = local.name
role = aws_iam_role.flow_logs_role.id

policy = <<EOF
Expand Down

0 comments on commit 7ffbaf1

Please sign in to comment.