aboutsummaryrefslogtreecommitdiffstats
path: root/terragrunt/openlab/RegionOne/stage/env.hcl
diff options
context:
space:
mode:
Diffstat (limited to 'terragrunt/openlab/RegionOne/stage/env.hcl')
-rw-r--r--terragrunt/openlab/RegionOne/stage/env.hcl22
1 files changed, 22 insertions, 0 deletions
diff --git a/terragrunt/openlab/RegionOne/stage/env.hcl b/terragrunt/openlab/RegionOne/stage/env.hcl
new file mode 100644
index 0000000..b3208c8
--- /dev/null
+++ b/terragrunt/openlab/RegionOne/stage/env.hcl
@@ -0,0 +1,22 @@
+# 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 = "" # 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 = "" # OpenSSH formated string is required
+ ssh_private_key_path = "" # e.g ~/.ssh/id_rsa
+
+ kubernetes_version = "v1.15.11-rancher1-2"
+ kubernetes_user = "ubuntu"
+ kubernetes_cluster_name = "rke_cluster"
+
+ kubernetes_home = "${get_parent_terragrunt_dir()}"
+
+ # Helm
+ service_account = "tiller"
+ namespace = "kube-system"
+} \ No newline at end of file