Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kostyaplis committed Nov 25, 2019
1 parent 136bf26 commit 77172f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "aws_s3_bucket" "this" {
count = length(var.s3_bucket_names)
count = length(var.s3_bucket_names)
bucket = var.s3_bucket_names[count.index]
acl = "private"
tags = var.tags
tags = var.tags
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ variable "tags" {
}

variable "s3_bucket_names" {
type = list(string)
default = []
type = list(string)
default = []
description = "List of buckets to be created"
}

0 comments on commit 77172f6

Please sign in to comment.