Skip to content

Commit

Permalink
#6
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrom-zoi committed Nov 17, 2021
1 parent 4a80c72 commit 1915bd9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.terraform
test__*
*.ignore
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
## 2.0.0

ENHANCEMENTS:
* Upgraded terraform version to 0.13 [#](https://github.com/zoitech/terraform-aws-s3-with-iam-access/issues/6)

BACKWARDS INCOMPATIBILITIES / NOTES:
* Works with terraform 0.13.x

## Releases Version: 1.0.0

ENHANCEMENTS:
* Upgrade TF to version 12

Expand Down
1 change: 0 additions & 1 deletion s3_bucket.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
resource "aws_s3_bucket" "s3_bucket" {
bucket = var.s3_bucket_name
acl = "private"
region = var.region

versioning {
enabled = var.s3_versioning_enabled #default = false
Expand Down
10 changes: 9 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

terraform {
required_version = ">= 0.12"
required_version = ">= 0.13"
required_providers {
aws = {
source = "hashicorp/aws"
}
template = {
source = "hashicorp/template"
}
}
}

0 comments on commit 1915bd9

Please sign in to comment.