We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9577f35 commit eee5195Copy full SHA for eee5195
2 files changed
cloudfront.tf
@@ -4,7 +4,7 @@ resource "aws_cloudfront_distribution" "cloudfront" {
4
web_acl_id = var.web_acl_id #tfsec:ignore:aws-cloudfront-enable-waf
5
comment = var.comment
6
http_version = var.http_version
7
- is_ipv6_enabled = var.ipv6
+ is_ipv6_enabled = var.is_ipv6_enabled
8
9
dynamic "origin" {
10
for_each = [var.origin]
variables.tf
@@ -98,7 +98,7 @@ variable "http_version" {
98
default = "http2"
99
}
100
101
-variable "ipv6" {
+variable "is_ipv6_enabled" {
102
description = "ipv6 status"
103
type = bool
104
default = false
0 commit comments