Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions terraform/account-wide-infrastructure/prod/data.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
data "aws_region" "current" {}

data "aws_secretsmanager_secret_version" "identities_account_id" {
secret_id = aws_secretsmanager_secret.identities_account_id.name
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/account-wide-infrastructure/prod/ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module "powerbi_gw_instance" {
source = "../modules/powerbi-gw-ec2"
use_custom_ami = false
instance_type = var.powerbi_gw_instance_type
name_prefix = "nhsd-nrlf--test-powerbi-gw"
name_prefix = "nhsd-nrlf--prod-powerbi-gw"
target_bucket_arn = module.prod-glue.target_bucket_arn
glue_kms_key_arn = module.prod-glue.aws_kms_key_arn
athena_kms_key_arn = module.prod-athena[0].kms_key_arn
Expand Down
4 changes: 2 additions & 2 deletions terraform/account-wide-infrastructure/prod/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ variable "enable_dns_hostnames" {
variable "enable_reporting" {
type = bool
description = "Enable account-wide reporting processes in the prod account"
default = false
default = true
}

variable "vpc_cidr_block" {
Expand Down Expand Up @@ -66,5 +66,5 @@ variable "powerbi_gw_instance_type" {
variable "use_powerbi_gw_custom_ami" {
type = bool
description = "Use custom image for PowerBI GW instance"
default = true
default = false
}
Loading