chore(deps): update terraform cloudposse/s3-bucket/aws to v4.11.0#62
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update terraform cloudposse/s3-bucket/aws to v4.11.0#62renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
/terratest |
419ef08 to
57e65a0
Compare
97777fd to
8c5bb16
Compare
7d89a53 to
33c0135
Compare
33c0135 to
d2764fe
Compare
d2764fe to
273e20f
Compare
273e20f to
cb9e718
Compare
ecb5ffd to
843298e
Compare
843298e to
64d5cbb
Compare
64d5cbb to
178176c
Compare
178176c to
3d242f8
Compare
3d242f8 to
71dc3b2
Compare
9099b85 to
b896417
Compare
b896417 to
28c560c
Compare
02a5959 to
ab2388e
Compare
d026834 to
c5da000
Compare
c5da000 to
e3e4d96
Compare
e3e4d96 to
58f55e0
Compare
58f55e0 to
8088493
Compare
8088493 to
942549a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.3.0→4.11.0Release Notes
cloudposse/terraform-aws-s3-bucket (cloudposse/s3-bucket/aws)
v4.11.0Compare Source
Add S3 Intelligent-Tiering archive configuration support @milldr (#286)
What
Add
aws_s3_bucket_intelligent_tiering_configurationresource andintelligent_tiering_configurationvariable to support configuring archive access tiers within the INTELLIGENT_TIERING storage class.Why
The module already supports
INTELLIGENT_TIERINGas a lifecycle transition storage class, but there's no way to configure the archive access tiers (Archive Access, Deep Archive Access) that control when objects within Intelligent-Tiering are moved to cheaper archive storage. This is needed for cost optimization on buckets with infrequently accessed data.Ref
🤖 Automatic Updates
Fix go version in tests @osterman (#276)
what
1.24why
References
Replace Makefile with atmos.yaml @osterman (#275)
what
Makefileatmos.yamlwhy
build-harnesswithatmosfor readme genrationReferences
v4.10.0Compare Source
feat: Add filter_prefix, filter_suffix config options for queues and topics @vonZeppelin (#261)
what
Signed-off-by: Leonid Bogdanov <leonidbogdanov86@gmail.com>
references
v4.9.0Compare Source
feat: add s3 request payment config @nitrocode (#259)
what
why
references
v4.8.0Compare Source
feat: support eventbridge bucket notification @nitrocode (#255)
what
why
references
v4.7.3Compare Source
🚀 Enhancements
fix: use new destination.bucket key in policy @nitrocode (#256)
what
why
destination_bucketand newdestination.bucketdestination.bucketand leftdestination_bucketfor backwards compatibility, as stated in variables.tf, and forgot to include the new value in the IAM policyreferences
🐛 Bug Fixes
fix: use new destination.bucket key in policy @nitrocode (#256)
what
why
destination_bucketand newdestination.bucketdestination.bucketand leftdestination_bucketfor backwards compatibility, as stated in variables.tf, and forgot to include the new value in the IAM policyreferences
v4.7.2Compare Source
🚀 Enhancements
fix: correct bucket name to fix broken `-replication` role @amila-ku (#250)
what
why
references
v4.7.1Compare Source
🚀 Enhancements
fix: s3 lambda event notification assignments @mpajuelofernandez (#253)
what
It seems there is a typo kind if error here
I think it should be
why
The S3 notification can not be created unless this is fixed
references
This should fix #252
🐛 Bug Fixes
fix: s3 lambda event notification assignments @mpajuelofernandez (#253)
what
It seems there is a typo kind if error here
I think it should be
why
The S3 notification can not be created unless this is fixed
references
This should fix #252
🤖 Automatic Updates
Update terratest to '>= 0.46.0' @osterman (#235)
what
>= 0.46.0why
References
Migrate new test account @osterman (#248)
what
.github/settings.yml.github/chatops.ymlfileswhy
.github/settings.ymlfrom org level to getterratestenvironmenttestaccountReferences
Update .github/settings.yml @osterman (#247)
what
.github/settings.yml.github/auto-release.ymlfileswhy
.github/settings.ymlfrom org levelreferences
Update .github/settings.yml @osterman (#246)
what
.github/settings.yml.github/auto-release.ymlfileswhy
.github/settings.ymlfrom org levelreferences
v4.7.0Compare Source
Make sure replica_kms_key_id is truly empty @stephan242 (#244)
references
closes #243
v4.6.0Compare Source
Addition of S3 bucket event notification resource and Addition of S3 directory optional resource @mayank0202 (#240)
Issue - GH-239
what
This feature will make s3 event notifications which will have 3 options to trigger lambda or queue or topic so we can define a resource from this documentation.
aws_s3_bucket_notificationwe also added s3 directory bucket which is a new feature in aws so addition of optional resource can be done if someone needs to use that with the help of terraform
aws_s3_directory_bucketwhy
Enhanced Event-Driven Architecture: The introduction of S3 event notifications allows the S3 bucket to trigger Lambda functions, SQS queues, or SNS topics. This facilitates seamless integration with other AWS services and enables real-time processing of data, which is crucial for building event-driven architectures.
New AWS Feature Adoption: The addition of the aws_s3_directory_bucket resource reflects the latest AWS capabilities, ensuring that our infrastructure is up-to-date with current AWS offerings. This optional resource allows users to leverage new AWS features as they become available, promoting flexibility and future-proofing our Terraform configurations.
Improved Flexibility: By providing options to trigger different AWS services (Lambda, SQS, SNS), the solution becomes more versatile, catering to a wide range of use cases and workflows. This flexibility can lead to more efficient and effective data processing pipelines.
Reduced Operational Overhead: Automating responses to S3 events using Lambda functions, queues, or topics can significantly reduce manual intervention and operational overhead. This leads to improved efficiency and allows teams to focus on higher-value tasks.
references
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_notification
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_directory_bucket
https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
v4.5.0Compare Source
feat: Add missed tags @MaxymVlasov (#241)
what
Add tags to resources where they missed
v4.4.0Compare Source
226: Add Expected Bucket Owner @houserx-ioannis (#238)
what
This PR addresses #226 about not being able to specify expected bucket owner in various S3 resources.
why
From AWS docs:
Because Amazon S3 identifies buckets based on their names, an application that uses an incorrect bucket name in a request could inadvertently perform operations against a different bucket than expected. To help avoid unintentional bucket interactions in situations like this, you can use bucket owner condition. Bucket owner condition enables you to verify that the target bucket is owned by the expected AWS account, providing an additional layer of assurance that your S3 operations are having the effects you intend.
references
#226
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.