Skip to content

Commit

Permalink
Appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
abought committed Mar 13, 2024
1 parent d9af20c commit 5a84913
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/imputation-iam/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ resource "aws_iam_role" "ec2" {
}

resource "aws_iam_role_policy_attachment" "ec2" {
role = aws_iam_role.ec2.name
role = aws_iam_role.ec2.name
# NOTE: Deprecated, but with no replacement policy; we'd need to develop our own
policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonElasticMapReduceforEC2Role"
}
Expand Down
6 changes: 3 additions & 3 deletions modules/imputation-server/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ variable "ec2_iam_role_tags" {

variable "emr_cluster_tags" {
description = "Tags to be applied to the EMR cluster"
default = {
"for-use-with-amazon-emr-managed-policies": true
default = {
"for-use-with-amazon-emr-managed-policies" : true
}
type = map(string)
type = map(string)
}

variable "emr_iam_role_tags" {
Expand Down

0 comments on commit 5a84913

Please sign in to comment.