We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a2c157 commit 8d64d81Copy full SHA for 8d64d81
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
Bugfix: Refactor md5 calculation on archive_file in codebuild child module.
6
Bugfix: Re-typed AWS account number as string to avoid rounding on account numbers prepended with zeros.
7
+Bugfix: Fix passed WAF variable values if set to inactive.
8
9
## 0.1.0 - 19th June 2021
10
main.tf
@@ -29,7 +29,7 @@ module "cloudfront" {
29
depends_on = [aws_acm_certificate_validation.wordpress_site,
30
module.waf]
31
cloudfront_class = var.cloudfront_class
32
- waf_acl_arn = module.waf[0].waf_acl_arn
+ waf_acl_arn = var.waf_enabled ? module.waf[0].waf_acl_arn : null
33
}
34
35
module "waf" {
0 commit comments