Skip to content

Commit 01784e4

Browse files
authored
Merge pull request #861 from NHSDigital/feature/jale13-nrl-1342-release-reporting-infra-to-int
NRL 1342 release reporting infra to int
2 parents d44647b + fc63b13 commit 01784e4

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module "int-athena" {
2+
source = "../modules/athena"
3+
name_prefix = "nhsd-nrlf--int"
4+
target_bucket_name = module.int-glue.target_bucket_name
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module "int-glue" {
2+
source = "../modules/glue"
3+
name_prefix = "nhsd-nrlf--int"
4+
python_version = 3
5+
}

terraform/infrastructure/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ locals {
2222
dynamodb_timeout_seconds = "3"
2323

2424
is_sandbox_env = length(regexall("-sandbox-", local.stack_name)) > 0
25-
is_dev_env = var.account_name == "dev"
25+
is_dev_env = var.account_name == "dev" || var.account_name == "int"
2626

2727
environment = local.is_sandbox_env ? "${var.account_name}-sandbox" : var.account_name
2828
shared_prefix = "${local.project}--${local.environment}"

0 commit comments

Comments
 (0)