Skip to content
New issue

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

aws_s3_bucket - Add support for Intelligent Tiering configuration #17028

Closed
dthvt opened this issue Jan 8, 2021 · 3 comments
Closed

aws_s3_bucket - Add support for Intelligent Tiering configuration #17028

dthvt opened this issue Jan 8, 2021 · 3 comments
Labels
new-resource Introduces a new resource. service/s3 Issues and PRs that pertain to the s3 service.

Comments

@dthvt
Copy link
Contributor

dthvt commented Jan 8, 2021

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Add support for configuring Intelligent Tiering properties on an S3 bucket.

New or Affected Resource(s)

  • aws_s3_bucket

Potential Terraform Configuration

It appears that these properties are very similar to replication configuration blocks.

# Copy-paste your Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file. For
# security, you can also encrypt the files using our GPG public key.
resource "aws_s3_bucket" "example" {
  # ...
  intelligent_tiering_configuration {
    id = "tiering"
    status = "Enabled"
    filter {  
      prefix = "example"
      tags = {
        Storage = "tiered"
      }
    }
    tiering {
      days = 100
      access_tier = "ARCHIVE_ACCESS"
    }
    tiering {
      days = 200
      access_tier = "DEEP_ARCHIVE_ACCESS"
    }
  }
}

    

References

@dthvt dthvt added the enhancement Requests to existing resources that expand the functionality or scope. label Jan 8, 2021
@ghost ghost added the service/s3 Issues and PRs that pertain to the s3 service. label Jan 8, 2021
@github-actions github-actions bot added the needs-triage Waiting for first response or review from a maintainer. label Jan 8, 2021
@bflad bflad added new-resource Introduces a new resource. and removed enhancement Requests to existing resources that expand the functionality or scope. needs-triage Waiting for first response or review from a maintainer. labels Jan 8, 2021
@bflad
Copy link
Contributor

bflad commented Jan 8, 2021

Hi @dthvt 👋 Thank you for raising this. It appears to be the same request as #16123, so to consolidate discussions and efforts, I'm going to close this issue in preference of the existing one. Please 👍 react and subscribe to that issue for further updates. Thanks.

@bflad bflad closed this as completed Jan 8, 2021
@dthvt
Copy link
Contributor Author

dthvt commented Jan 8, 2021

Interesting, I searched for a duplicate issue and didn't get any results. Thanks!

@ghost
Copy link

ghost commented Feb 8, 2021

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked as resolved and limited conversation to collaborators Feb 8, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
new-resource Introduces a new resource. service/s3 Issues and PRs that pertain to the s3 service.
Projects
None yet
Development

No branches or pull requests

2 participants