Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Commit

Permalink
Use splat syntax for bucket names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Genevieve LEsperance committed Dec 9, 2017
1 parent 5f23548 commit 5ba29a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -139,19 +139,19 @@ output "tcp_router_pool" {
}

output "buildpacks_bucket" {
value = "${google_storage_bucket.buildpacks.name}"
value = "${element(concat(google_storage_bucket.buildpacks.*.name, list("")), 0)}"
}

output "droplets_bucket" {
value = "${google_storage_bucket.droplets.name}"
value = "${element(concat(google_storage_bucket.droplets.*.name, list("")), 0)}"
}

output "packages_bucket" {
value = "${google_storage_bucket.packages.name}"
value = "${element(concat(google_storage_bucket.packages.*.name, list("")), 0)}"
}

output "resources_bucket" {
value = "${google_storage_bucket.resources.name}"
value = "${element(concat(google_storage_bucket.resources.*.name, list("")), 0)}"
}

output "director_blobstore_bucket" {
Expand Down

0 comments on commit 5ba29a1

Please sign in to comment.