Created
February 5, 2022 17:53
-
-
Save davidvpe/92fc5e1b16ac7b81728062a6385aed21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_s3_bucket" "website" { | |
bucket = "example.com" | |
acl = "private" | |
force_destroy = true | |
lifecycle { | |
prevent_destroy = false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment