File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ variable "vpc_cidr" {
60
60
61
61
resource "aws_eip" "jumpbox_eip" {
62
62
depends_on = [aws_internet_gateway . ig ]
63
- vpc = true
63
+ domain = " vpc "
64
64
}
65
65
66
66
resource "tls_private_key" "bosh_vms" {
@@ -138,7 +138,7 @@ resource "aws_nat_gateway" "nat" {
138
138
}
139
139
140
140
resource "aws_eip" "nat_eip" {
141
- vpc = true
141
+ domain = " vpc "
142
142
143
143
tags = {
144
144
Name = " ${ var . env_id } -nat"
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ resource "aws_security_group_rule" "concourse_lb_internal_egress" {
55
55
resource "aws_lb" "concourse_lb" {
56
56
name = " ${ var . short_env_id } -concourse-lb"
57
57
load_balancer_type = " network"
58
- subnets = [" ${ aws_subnet . lb_subnets . * . id } " ]
58
+ subnets = flatten ( [" ${ aws_subnet . lb_subnets . * . id } " ])
59
59
60
60
tags = {
61
61
Name = " ${ var . env_id } "
You can’t perform that action at this time.
0 commit comments