diff options
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 +} |