From 4f2cc9a1fa05026ea71222047d268959d413a54b Mon Sep 17 00:00:00 2001 From: Steven Miller Date: Fri, 5 Jul 2019 17:13:38 +0000 Subject: [PATCH] debugging pipeline --- eks.tf | 4 ---- examples/from_scratch/main.tf | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/eks.tf b/eks.tf index 8e64089..a224e41 100644 --- a/eks.tf +++ b/eks.tf @@ -29,10 +29,6 @@ module "eks" { worker_additional_security_group_ids = [aws_security_group.all_worker_mgmt.id] - map_roles = [] - map_accounts = [] - map_users = [] - cluster_endpoint_private_access = "true" cluster_endpoint_public_access = var.management_api == "public" ? true : false diff --git a/examples/from_scratch/main.tf b/examples/from_scratch/main.tf index bd3ab7d..3724339 100644 --- a/examples/from_scratch/main.tf +++ b/examples/from_scratch/main.tf @@ -13,4 +13,7 @@ module "astronomer_aws_with_vpc" { admin_email = "steven@astronomer.io" route53_domain = "astronomer-development.com" management_api = "public" + tags = { + "CI" = "true" + } }