Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 7, 2019 21:54
Show Gist options
  • Select an option

  • Save 100daysofdevops/8e010521d373756ee0fa70338963fdc9 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/8e010521d373756ee0fa70338963fdc9 to your computer and use it in GitHub Desktop.
provider "aws" {
region = "us-west-2"
}
resource "aws_s3_bucket" "bucket" {
bucket = "terraform-20181219040316452900000001"
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