Skip to content

Commit 43b2e4e

Browse files
committed
[NRL-1386] Remove env-specific reporting infra from account-wide
1 parent 15263c7 commit 43b2e4e

File tree

2 files changed

+0
-52
lines changed

2 files changed

+0
-52
lines changed

terraform/account-wide-infrastructure/test/athena.tf

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,3 @@
1-
/*module "qa-athena" {
2-
source = "../modules/athena"
3-
name_prefix = "nhsd-nrlf--qa"
4-
target_bucket_name = module.qa-glue.target_bucket_name
5-
glue_database = module.qa-glue.glue_database
6-
}
7-
8-
module "int-athena" {
9-
source = "../modules/athena"
10-
name_prefix = "nhsd-nrlf--int"
11-
target_bucket_name = module.int-glue.target_bucket_name
12-
glue_database = module.int-glue.glue_database
13-
}
14-
15-
module "int-sandbox-athena" {
16-
source = "../modules/athena"
17-
name_prefix = "nhsd-nrlf--int-sandbox"
18-
target_bucket_name = module.int-sandbox-glue.target_bucket_name
19-
glue_database = module.int-sandbox-glue.glue_database
20-
}
21-
22-
module "ref-athena" {
23-
source = "../modules/athena"
24-
name_prefix = "nhsd-nrlf--ref"
25-
target_bucket_name = module.ref-glue.target_bucket_name
26-
glue_database = module.ref-glue.glue_database
27-
}*/
28-
291
module "test-athena" {
302
count = var.enable_reporting ? 1 : 0
313
source = "../modules/athena"

terraform/account-wide-infrastructure/test/glue.tf

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,3 @@
1-
/*module "qa-glue" {
2-
source = "../modules/glue"
3-
name_prefix = "nhsd-nrlf--qa"
4-
python_version = 3
5-
}
6-
7-
module "int-glue" {
8-
source = "../modules/glue"
9-
name_prefix = "nhsd-nrlf--int"
10-
python_version = 3
11-
}
12-
13-
module "int-sandbox-glue" {
14-
source = "../modules/glue"
15-
name_prefix = "nhsd-nrlf--int-sandbox"
16-
python_version = 3
17-
}
18-
19-
module "ref-glue" {
20-
source = "../modules/glue"
21-
name_prefix = "nhsd-nrlf--ref"
22-
python_version = 3
23-
}*/
24-
251
module "test-glue" {
262
is_enabled = var.enable_reporting
273
source = "../modules/glue"

0 commit comments

Comments
 (0)