java-tutorials/terraform/best-practices/k8s-modules/main.tf

28 lines
455 B
Terraform
Raw Normal View History

2020-03-29 10:49:46 -04:00
/*
* Top-level definitions
*/
//================================================================== Ingress
module "ingress_www_petshop_com_br" {
source = "./modules/ingress/www.petshop.com.br"
ingress_host = "www.petshop.com.br"
}
//================================================================== Deployments
module "SvcCustomer" {
source = "./modules/SvcCustomer"
}
module "SvcFeedback" {
source = "./modules/SvcFeedback"
}