Dalton Hubble
2018-03-10 22:50:29 -08:00
parent 9fb1e1a0e2
commit 35f3b1b28c
4 changed files with 8 additions and 1 deletions

View File

@ -20,6 +20,8 @@ resource "aws_lb" "apiserver" {
internal = false
subnets = ["${aws_subnet.public.*.id}"]
enable_cross_zone_load_balancing = true
}
# Forward HTTP traffic to controllers

View File

@ -5,7 +5,7 @@ terraform {
}
provider "aws" {
version = "~> 1.7"
version = "~> 1.11"
}
provider "local" {

View File

@ -5,6 +5,8 @@ resource "aws_lb" "ingress" {
internal = false
subnets = ["${var.subnet_ids}"]
enable_cross_zone_load_balancing = true
}
# Forward HTTP traffic to workers