Skip to content

Commit 910dd30

Browse files
committed
[NRL-1386] WIP Fixup powerbi gw TF prov issues
1 parent 8cdf238 commit 910dd30

File tree

2 files changed

+4
-2
lines changed
  • terraform/account-wide-infrastructure

2 files changed

+4
-2
lines changed

terraform/account-wide-infrastructure/dev/vars.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ variable "vpc_private_subnets_cidr_block" {
4747
variable "enable_powerbi_auto_push" {
4848
type = bool
4949
description = "Enable automatic pushing of info into PowerBI"
50-
default = false
50+
default = true
5151
}
5252

5353
variable "powerbi_gw_instance_type" {

terraform/account-wide-infrastructure/modules/powerbi-gw-ec2/ec2.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ resource "aws_instance" "web" {
55
instance_type = var.instance_type
66
key_name = aws_key_pair.ec2_key_pair.key_name
77
subnet_id = var.subnet_id
8-
security_groups = var.security_groups
8+
# TODO WORK OUT WHY THIS IS HAVING SUCH AN ISSUE.....
9+
#security_groups = var.security_groups
10+
vpc_security_group_ids = var.security_groups
911

1012
user_data = file("${path.module}/scripts/user_data.tpl")
1113

0 commit comments

Comments
 (0)