Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 28, 2019 03:44
Show Gist options
  • Select an option

  • Save 100daysofdevops/89da397ab04a5b9beca03603b48b2b8e to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/89da397ab04a5b9beca03603b48b2b8e to your computer and use it in GitHub Desktop.
resource "aws_s3_bucket" "bucket" {
bucket = "terraform-20190327040316452900000001"
acl = "private"
lifecycle_rule {
enabled = true
transition {
days = 30
storage_class = "STANDARD_IA"
}
transition {
days = 60
storage_class = "GLACIER"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment