This commit is contained in:
41666 2020-10-09 10:54:55 -04:00
parent a5e2fdc7a7
commit ec505739c8
31 changed files with 1394 additions and 0 deletions

View file

@ -0,0 +1,13 @@
module "app-env-prod" {
source = "github.com/roleypoly/devops.git//terraform/modules/cluster-environment"
environment_tag = "production"
app_name = "roleypoly"
}
module "app-env-stage" {
source = "github.com/roleypoly/devops.git//terraform/modules/cluster-environment"
environment_tag = "staging"
app_name = "roleypoly"
}