Skip to content

Instantly share code, notes, and snippets.

@zot24
Last active October 11, 2017 12:15
Show Gist options
  • Save zot24/3611dcd2f1ea2ee58a97333490e24a97 to your computer and use it in GitHub Desktop.
Save zot24/3611dcd2f1ea2ee58a97333490e24a97 to your computer and use it in GitHub Desktop.
Create a S3 Bucket to store Terraform Remote State files
resource "aws_s3_bucket" "state" {
bucket = "${var.bucket_name}"
versioning {
enabled = true
}
lifecycle {
prevent_destroy = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment