There was an error while loading. Please reload this page.
1 parent ed2113f commit 63e620fCopy full SHA for 63e620f
2 files changed
terraform/alb.tf
@@ -1,6 +1,7 @@
1
# S3 Bucket for ALB Access Logs
2
resource "aws_s3_bucket" "alb_logs" {
3
bucket_prefix = "${var.name_prefix}-alb-logs-"
4
+ force_destroy = true
5
6
tags = {
7
Name = "${var.name_prefix}-alb-logs-bucket"
terraform/ecs.tf
@@ -2,6 +2,7 @@
resource "aws_ecr_repository" "drupal" {
name = "${var.name_prefix}-drupal"
image_tag_mutability = "MUTABLE"
+ force_delete = true
image_scanning_configuration {
8
scan_on_push = true
0 commit comments