We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are a lot of warnings being generated by the module in version 0.82.5
0.82.5
Here's a partial example related to "aws_s3_bucket" resource
"aws_s3_bucket"
acl
aws_s3_bucket_acl
aws_s3_bucket_versioning
cdn.logs/main.tf line 1, in resource "aws_s3_bucket" "default":
aws_s3_bucket_server_side_encryption_configuration
Basically there are deprecated arguments in the following modules/resources:
There's a way to replace the aws_s3_bucket resource (https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn/blob/0.82.5/main.tf#L232) with terraform-aws-s3-bucket module and with this specific tag (https://github.com/terraform-aws-modules/terraform-aws-s3-bucket/tree/v3.0.1)
aws_s3_bucket
terraform-aws-s3-bucket
Also we'll need to implement something similar for https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn/blob/0.82.5/main.tf#L326
Removing the warnings which are generated by the module
logs
No response
The text was updated successfully, but these errors were encountered:
Agree, my problem is
resource "aws_s3_bucket" "origin" Use the aws_s3_bucket_cors_configuration resource instead
Sorry, something went wrong.
No branches or pull requests
Describe the Feature
There are a lot of warnings being generated by the module in version
0.82.5
Here's a partial example related to
"aws_s3_bucket"
resourceacl
argument is deprecated, Use theaws_s3_bucket_acl
resource insteadaws_s3_bucket_versioning
resource insteadcdn.logs/main.tf line 1, in resource "aws_s3_bucket" "default":
Use theaws_s3_bucket_server_side_encryption_configuration
resource insteadBasically there are deprecated arguments in the following modules/resources:
Expected Behavior
There's a way to replace the
aws_s3_bucket
resource (https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn/blob/0.82.5/main.tf#L232) withterraform-aws-s3-bucket
module and with this specific tag (https://github.com/terraform-aws-modules/terraform-aws-s3-bucket/tree/v3.0.1)Also we'll need to implement something similar for https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn/blob/0.82.5/main.tf#L326
Use Case
Removing the warnings which are generated by the module
Describe Ideal Solution
terraform-aws-s3-bucket
module instead of theaws_s3_bucket
resource and the same goes forlogs
moduleAlternatives Considered
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: