Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketouem committed Jun 8, 2018
1 parent 15b26fd commit f2a6001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions module/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

resource "aws_iam_role" "lambda_sns_to_slack" {
name = "${var.lambda_iam_role_name}"
name = "${var.lambda_iam_role_name}"
assume_role_policy = "${file("${path.module}/policies/lambda-assume-role.json")}"
}

Expand All @@ -12,7 +12,7 @@ resource "aws_iam_role" "lambda_sns_to_slack" {
#

resource "aws_iam_role_policy" "lambda_sns_to_slack" {
name = "${var.lambda_iam_policy_name}"
role = "${aws_iam_role.lambda_sns_to_slack.id}"
name = "${var.lambda_iam_policy_name}"
role = "${aws_iam_role.lambda_sns_to_slack.id}"
policy = "${file("${path.module}/policies/lambda-role-policy.json")}"
}

0 comments on commit f2a6001

Please sign in to comment.