Skip to content

Commit

Permalink
create s3 buckets
Browse files Browse the repository at this point in the history
  • Loading branch information
roncitrus committed Dec 12, 2023
1 parent fc3fd81 commit d16d11a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion terraform/environments/cdpt-chaps/s3.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
resource "aws_s3_bucket" "chaps-db-backup-bucket" {
bucket = local.app_data.accounts[local.environment].s3_bucket_name
}

resource "aws_s3_bucket_acl" "chaps-db-backup-bucket-acl" {
bucket = aws_s3_bucket.chaps-db-backup-bucket.id
acl = "private"
}
}

0 comments on commit d16d11a

Please sign in to comment.