We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
fix(aws-cloudfront): Allow to disable IPv6 on cloudfront distribution (…
10b7092
…#1244) Fixes #1243
Successfully merging a pull request may close this issue.
Creating a cloudfront web distribution with IP v6 support disabled :
results in a Cloudformation template containing :
which is not the expected behavior.
The text was updated successfully, but these errors were encountered: