aboutsummaryrefslogtreecommitdiffstats
path: root/openlab/account.hcl
diff options
context:
space:
mode:
authoryoonsoonjahng <yoonsoon.jahng@yoppworks.com>2020-11-24 22:12:54 -0500
committerMorgan Richomme <morgan.richomme@orange.com>2020-12-01 16:26:24 +0000
commitfcc20b6ee553738034daa69e1bed93ec57e745bd (patch)
tree53ddb04124bb9a1e3343912a9fa73b4dc53c1c3a /openlab/account.hcl
parent78bb7f2409bb8f4fb826423c39641a3c9f7c07aa (diff)
Initial Terragrunt files to separate Terraform codes7.0.1guilin
Issue-ID: INT-1780 Change-Id: Ia23de2a11a31b4d2c9dc4800e45a27b035639ede Signed-off-by: yoonsoonjahng <yoonsoon.jahng@yoppworks.com> (cherry picked from commit c81979ab0a9991b4d0e355c39aa8d55ab1b7ff69)
Diffstat (limited to 'openlab/account.hcl')
-rw-r--r--openlab/account.hcl11
1 files changed, 11 insertions, 0 deletions
diff --git a/openlab/account.hcl b/openlab/account.hcl
new file mode 100644
index 0000000..27c5cf0
--- /dev/null
+++ b/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
+}