Skip to content

Commit

Permalink
Conditionally create aws_s3_bucket_public_access_block (#94)
Browse files Browse the repository at this point in the history
* Conditionally create aws_s3_bucket_public_access_block

It's not needed if none of its options are enabled.

* Pull out an expression into a local

Co-authored-by: nitrocode <[email protected]>
  • Loading branch information
alexjurkiewicz and nitrocode authored Aug 25, 2021
1 parent 95da7ac commit b601290
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ locals {
# Deprecate `replication_rules` in favor of `s3_replication_rules` to keep all the replication related
# inputs grouped under s3_replica[tion]
s3_replication_rules = var.replication_rules == null ? var.s3_replication_rules : var.replication_rules

public_access_block_enabled = var.block_public_acls || var.block_public_policy || var.ignore_public_acls || var.restrict_public_buckets
}

resource "aws_s3_bucket" "default" {
Expand Down Expand Up @@ -374,7 +376,7 @@ resource "aws_s3_bucket_policy" "default" {
# https://www.terraform.io/docs/providers/aws/r/s3_bucket_public_access_block.html
# for the nuances of the blocking options
resource "aws_s3_bucket_public_access_block" "default" {
count = local.enabled ? 1 : 0
count = module.this.enabled && local.public_access_block_enabled ? 1 : 0
bucket = join("", aws_s3_bucket.default.*.id)

block_public_acls = var.block_public_acls
Expand Down

0 comments on commit b601290

Please sign in to comment.