Skip to content

Commit

Permalink
force destroy s3
Browse files Browse the repository at this point in the history
  • Loading branch information
clamorisse committed Oct 27, 2016
1 parent a87018c commit c9fd948
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions infrastructure/modules/s3/buckets_for_lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ variable "env" { }
resource "aws_s3_bucket" "source" {
bucket = "${var.source_bucket}"
acl = "private"
force_destroy = true

tags {
Name = "${var.app_name}"
Expand All @@ -20,6 +21,7 @@ resource "aws_s3_bucket" "source" {
resource "aws_s3_bucket" "target" {
bucket = "${var.source_bucket}analyzed"
acl = "private"
force_destroy = true

tags {
Name = "${var.app_name}"
Expand Down

0 comments on commit c9fd948

Please sign in to comment.