diff options
author | yoonsoonjahng <yoonsoon.jahng@yoppworks.com> | 2020-11-24 22:12:54 -0500 |
---|---|---|
committer | yoonsoonjahng <yoonsoon.jahng@yoppworks.com> | 2020-11-25 12:01:31 -0500 |
commit | c81979ab0a9991b4d0e355c39aa8d55ab1b7ff69 (patch) | |
tree | 53ddb04124bb9a1e3343912a9fa73b4dc53c1c3a /openlab/account.hcl | |
parent | 78bb7f2409bb8f4fb826423c39641a3c9f7c07aa (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/account.hcl')
-rw-r--r-- | openlab/account.hcl | 11 |
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 +} |