File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Tamr S3 Module Repo
2
2
3
+ ## v1.3.2 - August 9th 2022
4
+ * Fixes a bug where two resources were controlling server side encryption
5
+
3
6
## v1.3.1 - August 4th 2022
4
7
* Adjusts AWS provider constraints to allow newer versions
5
8
Original file line number Diff line number Diff line change 1
- 1.3.1
1
+ 1.3.2
Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ data "aws_s3_bucket" "existing-bucket" {
4
4
}
5
5
6
6
module "existing-bucket-iam-0" {
7
- # source = "git::https://github.com/Datatamer/terraform-aws-s3.git//modules/bucket-iam-policy?ref=1.2.1 "
7
+ # source = "git::https://github.com/Datatamer/terraform-aws-s3.git//modules/bucket-iam-policy?ref=1.3.2 "
8
8
source = " ../../modules/bucket-iam-policy"
9
9
bucket_name = data. aws_s3_bucket . existing-bucket . id
10
10
read_write_paths = [" some/read-write-folder" ]
11
11
tags = var. tags
12
12
}
13
13
14
14
module "existing-bucket-iam-1" {
15
- # source = "git::https://github.com/Datatamer/terraform-aws-s3.git//modules/bucket-iam-policy?ref=1.2.1 "
15
+ # source = "git::https://github.com/Datatamer/terraform-aws-s3.git//modules/bucket-iam-policy?ref=1.3.2 "
16
16
source = " ../../modules/bucket-iam-policy"
17
17
bucket_name = data. aws_s3_bucket . existing-bucket . id
18
18
read_write_paths = [" another/read-write-folder" ]
Original file line number Diff line number Diff line change 1
1
module "minimal" {
2
- # source = "git::https://github.com/Datatamer/terraform-aws-s3?ref=1.2.1 "
2
+ # source = "git::https://github.com/Datatamer/terraform-aws-s3?ref=1.3.2 "
3
3
source = " ../../"
4
4
bucket_name = var. test_bucket_name
5
5
read_only_paths = var. read_only_paths # ["path/to/ro-folder"]
You can’t perform that action at this time.
0 commit comments