Skip to content

Commit b5f3545

Browse files
committed
[NDR-181] removing current_account_id
1 parent 20a38a6 commit b5f3545

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

infrastructure/ecr.tf

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
module "ndr-docker-ecr-ui" {
2-
source = "./modules/ecr/"
3-
app_name = "ndr-${terraform.workspace}-app"
4-
current_account_id = data.aws_caller_identity.current.account_id
5-
environment = var.environment
6-
owner = var.owner
2+
source = "./modules/ecr/"
3+
app_name = "ndr-${terraform.workspace}-app"
4+
environment = var.environment
5+
owner = var.owner
76
}
87
module "ndr-docker-ecr-data-collection" {
9-
count = local.is_sandbox ? 0 : 1
10-
source = "./modules/ecr/"
11-
app_name = "${terraform.workspace}-data-collection"
12-
current_account_id = data.aws_caller_identity.current.account_id
13-
environment = var.environment
14-
owner = var.owner
8+
count = local.is_sandbox ? 0 : 1
9+
source = "./modules/ecr/"
10+
app_name = "${terraform.workspace}-data-collection"
11+
environment = var.environment
12+
owner = var.owner
1513
}

0 commit comments

Comments
 (0)