From f9c7cf79e410c10a714f65cb6f918164812456ab Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 17 Sep 2018 14:46:21 -0700 Subject: [PATCH] steps/infra/aws/main: Fix Terraform format for module.iam Generated with: $ terraform fmt fixing formatting issues that snuck in with 39abbbb1 (modules/aws: Add IAM module, 2018-09-17, #265). --- steps/infra/aws/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steps/infra/aws/main.tf b/steps/infra/aws/main.tf index 7e19a84f2d0..7d61bef40aa 100644 --- a/steps/infra/aws/main.tf +++ b/steps/infra/aws/main.tf @@ -44,8 +44,8 @@ module "masters" { module "iam" { source = "../../../modules/aws/iam" - cluster_name = "${var.tectonic_cluster_name}" - worker_iam_role = "${var.tectonic_aws_worker_iam_role_name}" + cluster_name = "${var.tectonic_cluster_name}" + worker_iam_role = "${var.tectonic_aws_worker_iam_role_name}" } module "dns" {