aboutsummaryrefslogtreecommitdiffstats
path: root/terragrunt/openlab/account.hcl
diff options
context:
space:
mode:
authoryoonsoonjahng <yoonsoon.jahng@yoppworks.com>2020-09-10 12:12:40 -0400
committerNeil Derraugh <neil.derraugh@yoppworks.com>2020-09-14 21:25:17 +0000
commitc0987507209cdfa232b5113dbb386bfc3cf87805 (patch)
tree8214fa05f75253a10f01d06dfcb99ae788ddc408 /terragrunt/openlab/account.hcl
parent8e49e9261a4aa68670937f88d44b26a129ec2b4f (diff)
Added terragrunt script pulling integration/terraform.
Issue-ID: INT-1719 Change-Id: I0282f010d07e0a1cc1259133f4237ea7e1d72126 Signed-off-by: yoonsoonjahng <yoonsoon.jahng@yoppworks.com>
Diffstat (limited to 'terragrunt/openlab/account.hcl')
-rw-r--r--terragrunt/openlab/account.hcl11
1 files changed, 11 insertions, 0 deletions
diff --git a/terragrunt/openlab/account.hcl b/terragrunt/openlab/account.hcl
new file mode 100644
index 0000000..19d1b8c
--- /dev/null
+++ b/terragrunt/openlab/account.hcl
@@ -0,0 +1,11 @@
+# Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
+# terragrunt.hcl configuration.
+# For Openstack, please fill in the values below
+locals {
+ user_name = "${get_env("user_name", "")}" # Expose environmental variables for your account
+ password = "${get_env("password", "")}"
+ project_id = "${get_env("project_id", "")}"
+ auth_url = "${get_env("auth_url","")}"
+ backend = "" # Remote state backend. gcs for google or s3 for Amazon
+ backend_state = "" # GCP storage bucket or AWS S3
+}