Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't disable IPv6 support on Cloudfront Web Distribution #1243

Closed
SkxNMDI5 opened this issue Nov 24, 2018 · 0 comments · Fixed by #1244
Closed

Can't disable IPv6 support on Cloudfront Web Distribution #1243

SkxNMDI5 opened this issue Nov 24, 2018 · 0 comments · Fixed by #1244

Comments

@SkxNMDI5
Copy link

Creating a cloudfront web distribution with IP v6 support disabled :

const cloudfrontDistribution = new cloudfront.CloudFrontWebDistribution(
      this,
      "MyDistribution",
      {
        originConfigs: [
          {
            behaviors: [
              {
                isDefaultBehavior: true
              }
            ],
            s3OriginSource: {
              s3BucketSource: myBucket
            }
          }
        ],
        enableIpV6: false
      }
    );

results in a Cloudformation template containing :

IPV6Enabled: true

which is not the expected behavior.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant