Merge pull request #1267 from robgil-dds/169163334-lb

169163334 - Adds LB module
This commit is contained in:
dandds
2019-12-19 09:40:13 -05:00
committed by GitHub
4 changed files with 48 additions and 0 deletions

View File

@@ -9,3 +9,10 @@ module "k8s" {
vnet_subnet_id = module.vpc.subnets #FIXME - output from module.vpc.subnets should be map
}
module "lb" {
source = "../../modules/lb"
region = var.region
name = var.name
environment = var.environment
owner = var.owner
}