aboutsummaryrefslogtreecommitdiffstats
path: root/terragrunt/openlab/account.hcl
blob: 723c6f1acef588bf957b5a74d9f397d18a019d7f (plain)
1
2
3
4
5
6
7
8
9
10
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. e.g. $>source openstack.rc
  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
}