Skip to content

Commit

Permalink
Fix output names
Browse files Browse the repository at this point in the history
  • Loading branch information
snemetz authored Dec 4, 2017
1 parent b7b4cdc commit 26a33f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@

output "arn" {
output "arns" {
description = "List of AWS S3 Bucket ARNs"
value = "${aws_s3_bucket.this.*.arn}"
}
output "domain_name" {
output "domain_names" {
description = "List of AWS S3 Bucket Domain Names"
value = "${aws_s3_bucket.this.*.bucket_domain_name}"
}
output "hosted_zone_id" {
output "hosted_zone_ids" {
description = "List of AWS S3 Bucket Hosted Zone IDs"
value = "${aws_s3_bucket.this.*.hosted_zone_id}"
}
output "id" {
output "ids" {
description = "List of AWS S3 Bucket IDs"
value = "${aws_s3_bucket.this.*.id}"
}
output "name" {
output "names" {
description = "List of AWS S3 Bucket Names"
value = "${aws_s3_bucket.this.*.id}"
}
output "region" {
output "regions" {
description = "List of AWS S3 Bucket Regions"
value = "${aws_s3_bucket.this.*.region}"
}
Expand Down

0 comments on commit 26a33f7

Please sign in to comment.