-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
EC2.CfnNetworkAclEntry: can't specify IPv6 rule because "cidrBlock" required instead of optional #1517
Labels
Comments
Interesting. Well the CloudFormation schema definitely says that In the mean time, you should be able to specify a value for the property and then remove it again via CloudFormation overrides to work around this. |
rix0rrr
added
bug
This issue is a bug.
@aws-cdk/aws-cloudformation
Related to AWS CloudFormation
labels
Jan 11, 2019
rix0rrr
added a commit
that referenced
this issue
Jan 17, 2019
The docs say this property is optional (exactly one of `CidrBlock` and `ipv6CidrBlock` should be specified) but it's typed as `Required` in the JSON schema. Patch the schema until this is fixed upstream. Fixes #1517.
4 tasks
rix0rrr
added a commit
that referenced
this issue
Jan 18, 2019
The docs say this property is optional (exactly one of `CidrBlock` and `ipv6CidrBlock` should be specified) but it's typed as `Required` in the JSON schema. Patch the schema until this is fixed upstream. Fixes #1517.
john-shaskin
pushed a commit
to john-shaskin/aws-cdk
that referenced
this issue
Jan 23, 2019
The docs say this property is optional (exactly one of `CidrBlock` and `ipv6CidrBlock` should be specified) but it's typed as `Required` in the JSON schema. Patch the schema until this is fixed upstream. Fixes aws#1517. Add MethodResponse support for aws-apigateway Remove Dockerfile that was no longer needed Update python base image from 3.6 to 3.6.5 Make the dockerfile work Add MethodResponse support for aws-apigateway Remove Dockerfile that was no longer needed Update python base image from 3.6 to 3.6.5 Make the dockerfile work Add MethodResponse to API Gateway Method. Add some documentation to the MethodResponse properties. Update the test for MethodResponse with response models. Fix some formatting and finish adding code documentation for MethodResponse. Remove Dockerfile from this branch Fix bad merge to methodresponse test. Correct the MethodResponse response models documentation. Add IModel type to reference when configuring a MethodResponse
sam-goodwin
pushed a commit
that referenced
this issue
Jan 28, 2019
The docs say this property is optional (exactly one of `CidrBlock` and `ipv6CidrBlock` should be specified) but it's typed as `Required` in the JSON schema. Patch the schema until this is fixed upstream. Fixes #1517.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
NetworkACLEntry docs indicates that only
CidrBlock
orIpv6CidrBlock
is required.The TypeScript definition for CfnNetworkAclEntryProps has
cidrBlock
as required.Reported error is:
If
cidrBlock
is ommitted, the error is:The text was updated successfully, but these errors were encountered: