-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ResourcePath Pattern to check for staring / (#3019)
- Loading branch information
Showing
31 changed files
with
3,168 additions
and
1,381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nloadsMetadata/42e9df95722b6524cd001503b6750b86f60a7b5acfc406ebb10d5748cbb8ed41.meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"etag": "\"d0f90a7769ea1d4fa85d0ae3253d825c\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"} | ||
{"etag": "\"45b27dc6f4f9a7af15585ca2d23c2646\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"} |
2 changes: 1 addition & 1 deletion
2
...nloadsMetadata/8b8b0cee4df1ef0947a8289e8ec0c67869b7533eabab32ecfc0a00cb19e55a5f.meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"etag": "\"8acebef03922c8bf8153cd9c069d3aab\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"} | ||
{"etag": "\"73eb84789e3f47a2ce8a8d0e2a7fa6ca\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"} |
2 changes: 1 addition & 1 deletion
2
...nloadsMetadata/d85e2e061cacfcffe4902adb1074a04e6bb7f975b606f8db57532faddfcdd8c8.meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"etag": "\"2bcfcf6304d65536cc49f5523ab4fb7f\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"} | ||
{"etag": "\"bfb34c90ce8436ce9714869ed81302be\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"} |
Empty file.
7 changes: 7 additions & 0 deletions
7
src/cfnlint/data/schemas/patches/extensions/all/aws_apigateway_stage/manual.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"op": "add", | ||
"path": "/definitions/MethodSetting/properties/ResourcePath/pattern", | ||
"value": "^/.*$" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
src/cfnlint/data/schemas/providers/ap_southeast_3/aws-ec2-dhcpoptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
{ | ||
"additionalProperties": false, | ||
"createOnlyProperties": [ | ||
"/properties/NetbiosNameServers", | ||
"/properties/NetbiosNodeType", | ||
"/properties/NtpServers", | ||
"/properties/DomainName", | ||
"/properties/DomainNameServers" | ||
], | ||
"definitions": { | ||
"Tag": { | ||
"additionalProperties": false, | ||
"properties": { | ||
"Key": { | ||
"maxLength": 128, | ||
"minLength": 1, | ||
"type": "string" | ||
}, | ||
"Value": { | ||
"maxLength": 256, | ||
"minLength": 0, | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"Value", | ||
"Key" | ||
], | ||
"type": "object" | ||
} | ||
}, | ||
"description": "Resource Type definition for AWS::EC2::DHCPOptions", | ||
"handlers": { | ||
"create": { | ||
"permissions": [ | ||
"ec2:CreateDhcpOptions", | ||
"ec2:DescribeDhcpOptions", | ||
"ec2:CreateTags" | ||
] | ||
}, | ||
"delete": { | ||
"permissions": [ | ||
"ec2:DeleteDhcpOptions", | ||
"ec2:DeleteTags", | ||
"ec2:DescribeDhcpOptions" | ||
] | ||
}, | ||
"list": { | ||
"permissions": [ | ||
"ec2:DescribeDhcpOptions" | ||
] | ||
}, | ||
"read": { | ||
"permissions": [ | ||
"ec2:DescribeDhcpOptions", | ||
"ec2:DescribeTags" | ||
] | ||
}, | ||
"update": { | ||
"permissions": [ | ||
"ec2:CreateTags", | ||
"ec2:DescribeDhcpOptions", | ||
"ec2:DeleteTags" | ||
] | ||
} | ||
}, | ||
"primaryIdentifier": [ | ||
"/properties/DhcpOptionsId" | ||
], | ||
"properties": { | ||
"DhcpOptionsId": { | ||
"type": "string" | ||
}, | ||
"DomainName": { | ||
"description": "This value is used to complete unqualified DNS hostnames.", | ||
"type": "string" | ||
}, | ||
"DomainNameServers": { | ||
"description": "The IPv4 addresses of up to four domain name servers, or AmazonProvidedDNS.", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array", | ||
"uniqueItems": true | ||
}, | ||
"NetbiosNameServers": { | ||
"description": "The IPv4 addresses of up to four NetBIOS name servers.", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array", | ||
"uniqueItems": true | ||
}, | ||
"NetbiosNodeType": { | ||
"description": "The NetBIOS node type (1, 2, 4, or 8).", | ||
"enum": [ | ||
"1", | ||
"2", | ||
"4", | ||
"8" | ||
], | ||
"type": "integer" | ||
}, | ||
"NtpServers": { | ||
"description": "The IPv4 addresses of up to four Network Time Protocol (NTP) servers.", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array", | ||
"uniqueItems": false | ||
}, | ||
"Tags": { | ||
"description": "Any tags assigned to the DHCP options set.", | ||
"insertionOrder": false, | ||
"items": { | ||
"$ref": "#/definitions/Tag" | ||
}, | ||
"type": "array", | ||
"uniqueItems": false | ||
} | ||
}, | ||
"readOnlyProperties": [ | ||
"/properties/DhcpOptionsId" | ||
], | ||
"tagging": { | ||
"cloudFormationSystemTags": true, | ||
"tagOnCreate": true, | ||
"tagProperty": "/properties/Tags", | ||
"tagUpdatable": true, | ||
"taggable": true | ||
}, | ||
"typeName": "AWS::EC2::DHCPOptions" | ||
} |
Oops, something went wrong.