Skip to content

Commit eee5195

Browse files
committed
ipv6 var name
1 parent 9577f35 commit eee5195

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cloudfront.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "aws_cloudfront_distribution" "cloudfront" {
44
web_acl_id = var.web_acl_id #tfsec:ignore:aws-cloudfront-enable-waf
55
comment = var.comment
66
http_version = var.http_version
7-
is_ipv6_enabled = var.ipv6
7+
is_ipv6_enabled = var.is_ipv6_enabled
88

99
dynamic "origin" {
1010
for_each = [var.origin]

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ variable "http_version" {
9898
default = "http2"
9999
}
100100

101-
variable "ipv6" {
101+
variable "is_ipv6_enabled" {
102102
description = "ipv6 status"
103103
type = bool
104104
default = false

0 commit comments

Comments
 (0)