aboutsummaryrefslogtreecommitdiffstats
path: root/openlab/RegionOne/stage/env.hcl
diff options
context:
space:
mode:
authoryoonsoonjahng <yoonsoon.jahng@yoppworks.com>2020-11-24 22:12:54 -0500
committeryoonsoonjahng <yoonsoon.jahng@yoppworks.com>2020-11-25 12:01:31 -0500
commitc81979ab0a9991b4d0e355c39aa8d55ab1b7ff69 (patch)
tree53ddb04124bb9a1e3343912a9fa73b4dc53c1c3a /openlab/RegionOne/stage/env.hcl
parent78bb7f2409bb8f4fb826423c39641a3c9f7c07aa (diff)
Initial Terragrunt files to separate Terraform codes
Issue-ID: INT-1780 Change-Id: Ia23de2a11a31b4d2c9dc4800e45a27b035639ede Signed-off-by: yoonsoonjahng <yoonsoon.jahng@yoppworks.com>
Diffstat (limited to 'openlab/RegionOne/stage/env.hcl')
-rw-r--r--openlab/RegionOne/stage/env.hcl32
1 files changed, 32 insertions, 0 deletions
diff --git a/openlab/RegionOne/stage/env.hcl b/openlab/RegionOne/stage/env.hcl
new file mode 100644
index 0000000..8a2d58e
--- /dev/null
+++ b/openlab/RegionOne/stage/env.hcl
@@ -0,0 +1,32 @@
+# Set common variables for the environment. This is automatically pulled in in the root terragrunt.hcl configuration to
+# feed forward to the child modules.
+locals {
+ environment = "stage" # name of the environment you use. e.g stage, prod or qa
+ network = "" # name of the network to connect with the Internet
+
+ # Rancher and Kubernetes
+ # To access a VM, 'ssh -i ssh_private_key_path kubernetes_user@one-of-the-external-ips'
+ # a key pair for accessing VMs
+ ssh_public_key = ""
+ ssh_private_key_path = ""
+
+ kubernetes_version = "v1.17.3-rancher1-1"
+ kubernetes_user = "ubuntu"
+ kubernetes_cluster_name = "rke_cluster"
+
+ kubernetes_home = "${get_parent_terragrunt_dir()}"
+
+ # Helm
+ service_account = "tiller"
+ namespace = "kube-system"
+
+ # NFS provisioner for kubernetes
+ nfs_enabled = true
+
+ # Keycloak
+ keycloak_enabled = false
+ olm_version = "0.16.1" # Version of Operator Lifecycle Manager
+
+ # Concourse CICD
+ concourse_enabled = false
+} \ No newline at end of file