Skip to content

Commit 566220e

Browse files
author
Richard Gilmore
authored
Merge pull request #19 from slicelife/prod-tagging
add tags in production
2 parents c5680d9 + 4219233 commit 566220e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

production/main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,16 @@ locals {
4545
module "s3_bucket" {
4646
source = "../modules/s3_bucket"
4747
s3_bucket = local.s3_bucket_name
48+
tags = local.default_tags
4849
}
4950

5051
module "iam" {
5152
source = "https://github.com/segmentio/terraform-aws-data-lake/archive/v0.3.0.zip//terraform-aws-data-lake-0.3.0/modules/iam"
5253

5354
s3_bucket = local.s3_bucket_name
5455
external_ids = local.external_ids
56+
tags = local.default_tags
57+
5558
}
5659

5760
module "emr" {
@@ -66,6 +69,8 @@ module "emr" {
6669
core_instance_max_count = 6
6770
task_instance_count = 3
6871
task_instance_max_count = 6
72+
tags = local.default_tags
73+
6974
}
7075

7176
module "segment" {

0 commit comments

Comments
 (0)