File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
terraform/account-wide-infrastructure Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ variable "vpc_private_subnets_cidr_block" {
4747variable "enable_powerbi_auto_push" {
4848 type = bool
4949 description = " Enable automatic pushing of info into PowerBI"
50- default = false
50+ default = true
5151}
5252
5353variable "powerbi_gw_instance_type" {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments