Created
April 12, 2020 18:25
-
-
Save AymenSegni/8e46a8fe1af77b57a948e34e93decae6 to your computer and use it in GitHub Desktop.
Revisions
-
AymenSegni created this gist
Apr 12, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # * deployment/main.tf # .... the rest the modules deployments module "app_env" { source = "../modules/app_env" k8s_app_lb_name = var.k8s_app_lb_name zone_name = var.zone_name } # * deployment/variables.tf # .... the rest the modules variables variable "k8s_app_lb_name" { type = string description = "the K8S app public LB" } variable "zone_name" { type = string default = "aymen.krypton.berlin." description = "Main zone name" }