diff --git a/.gitignore b/.gitignore index 65c2189..eb765f4 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ *.tfstate.backup *.zip *.hcl +*.info !lambda_payload.zip diff --git a/s3_bucket.tf b/s3_bucket.tf index 71a89d5..04c25d8 100644 --- a/s3_bucket.tf +++ b/s3_bucket.tf @@ -19,7 +19,7 @@ resource "aws_s3_bucket" "munki-bucket" { lifecycle { # This can't be interpolationed as a variable. https://github.com/hashicorp/terraform/issues/3116 # This bucket must be manually destroyed in the AWS console or via API for safety purposes. - prevent_destroy = true + prevent_destroy = false } tags = merge( @@ -54,4 +54,3 @@ resource "aws_s3_bucket_notification" "bucket_notification" { filter_prefix = "pkgsinfo/" } } -