Added terragrunt script pulling integration/terraform.
[integration/terraform.git] / terragrunt / openlab / account.hcl
1 # Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
2 # terragrunt.hcl configuration.
3 # For Openstack, please fill in the values below
4 locals {
5   user_name  = "${get_env("user_name", "")}"   # Expose environmental variables for your account
6   password   = "${get_env("password", "")}"
7   project_id = "${get_env("project_id", "")}"
8   auth_url   = "${get_env("auth_url","")}"
9   backend    = "gcs"   # Remote state backend. gcs for google or s3 for Amazon
10   backend_state = "terraform-state-onap-279819" # GCP storage bucket or AWS S3
11 }