169163334 - Adds LB module

This commit is contained in:
Rob Gil
2019-12-18 20:55:58 -05:00
parent 585d52f045
commit 7aeda9377e
4 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
variable "region" {
type = string
description = "Region this module and resources will be created in"
}
variable "name" {
type = string
description = "Unique name for the services in this module"
}
variable "environment" {
type = string
description = "Environment these resources reside (prod, dev, staging, etc)"
}
variable "owner" {
type = string
description = "Owner of the environment and resources created in this module"
}