Skip to content

Commit

Permalink
Merge pull request #8 from vivantehealth/location
Browse files Browse the repository at this point in the history
add app_engine_location output
#minor
  • Loading branch information
figadore authored Oct 15, 2021
2 parents a92bb62 + 5fc9fa5 commit 09b5f08
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
output "env_terraform_project_id" {
value = jsondecode(data.google_storage_bucket_object_content.env_config.content).env_terraform_project_id
# This would have also worked, but the org terraformer already writes this value now, so, oops
#value = data.google_project.this.project_id
}

output "env_id" {
Expand All @@ -12,6 +10,10 @@ output "env_folder_id" {
value = jsondecode(data.google_storage_bucket_object_content.env_config.content).env_folder_id
}

output "app_engine_location" {
value = jsondecode(data.google_storage_bucket_object_content.env_config.content).app_engine_location
}

output "env_region" {
value = jsondecode(data.google_storage_bucket_object_content.env_config.content).env_region
}
Expand Down

0 comments on commit 09b5f08

Please sign in to comment.