Skip to content

Commit 26a33f7

Browse files
authored
Fix output names
1 parent b7b4cdc commit 26a33f7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

outputs.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11

2-
output "arn" {
2+
output "arns" {
33
description = "List of AWS S3 Bucket ARNs"
44
value = "${aws_s3_bucket.this.*.arn}"
55
}
6-
output "domain_name" {
6+
output "domain_names" {
77
description = "List of AWS S3 Bucket Domain Names"
88
value = "${aws_s3_bucket.this.*.bucket_domain_name}"
99
}
10-
output "hosted_zone_id" {
10+
output "hosted_zone_ids" {
1111
description = "List of AWS S3 Bucket Hosted Zone IDs"
1212
value = "${aws_s3_bucket.this.*.hosted_zone_id}"
1313
}
14-
output "id" {
14+
output "ids" {
1515
description = "List of AWS S3 Bucket IDs"
1616
value = "${aws_s3_bucket.this.*.id}"
1717
}
18-
output "name" {
18+
output "names" {
1919
description = "List of AWS S3 Bucket Names"
2020
value = "${aws_s3_bucket.this.*.id}"
2121
}
22-
output "region" {
22+
output "regions" {
2323
description = "List of AWS S3 Bucket Regions"
2424
value = "${aws_s3_bucket.this.*.region}"
2525
}

0 commit comments

Comments
 (0)