Terraform Provider MinIO v3.40.0
To install this provider, copy and paste this code into your Terraform configuration:
terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = "3.40.0"
}
}
}What's Changed
Security
- fix(s3): stop granting bucket administration to anonymous callers by @felladrin in #1085
minio_s3_bucket_anonymous_accesswithaccess_type = "public"no longer grants anonymous clientss3:PutBucketPolicy,s3:DeleteBucketPolicy,s3:DeleteBucket,s3:CreateBucket,s3:GetBucketPolicyor the bucket notification actions. Before this fix, any unauthenticated client could rewrite the bucket policy or delete the bucket. Re-apply your configuration to replace the old policy; anonymous object read/write access is unchanged.
Other Changes
- Update info on Readme by @felladrin in #1084
Full Changelog: v3.39.0...v3.40.0