Skip to content

Commit

Permalink
0.1.1 (#5)
Browse files Browse the repository at this point in the history
* Fixing WAF active bug
  • Loading branch information
petewilcock authored Jun 19, 2021
1 parent 5a2c157 commit 8d64d81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Bugfix: Refactor md5 calculation on archive_file in codebuild child module.
Bugfix: Re-typed AWS account number as string to avoid rounding on account numbers prepended with zeros.
Bugfix: Fix passed WAF variable values if set to inactive.

## 0.1.0 - 19th June 2021

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module "cloudfront" {
depends_on = [aws_acm_certificate_validation.wordpress_site,
module.waf]
cloudfront_class = var.cloudfront_class
waf_acl_arn = module.waf[0].waf_acl_arn
waf_acl_arn = var.waf_enabled ? module.waf[0].waf_acl_arn : null
}

module "waf" {
Expand Down

0 comments on commit 8d64d81

Please sign in to comment.