Skip to content

Commit ef7d31b

Browse files
chore(schemas) - Update CloudFormation schemas to 2024-07-26 (#3517)
* Update CloudFormation schemas to 2024-07-26 * Extra patching for new secrets manager scenarios --------- Co-authored-by: kddejong <[email protected]> Co-authored-by: Kevin DeJong <[email protected]>
1 parent e46a0d2 commit ef7d31b

File tree

449 files changed

+98439
-15891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

449 files changed

+98439
-15891
lines changed

docs/rules.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To include these rules, use the `-e/include-experimental` argument when running
4646
## Rules
4747
(_This documentation is generated by running `cfn-lint --update-documentation`, do not alter this manually_)
4848

49-
The following **221** rules are applied by this linter:
49+
The following **223** rules are applied by this linter:
5050

5151
| Rule ID | Title | Description | Config<br />(Name:Type:Default) | Source | Tags |
5252
| -------- | ----- | ----------- | ---------- | ------ | ---- |
@@ -234,6 +234,7 @@ The following **221** rules are applied by this linter:
234234
| [W1011<a name="W1011"></a>](../src/cfnlint/rules/parameters/DynamicReferenceSecret.py) | Instead of REFing a parameter for a secret use a dynamic reference | Instead of REFing a parameter for a secret use a dynamic reference. Solutions like SSM parameter store and secrets manager provide better security of sercrets | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/security-best-practices.html#creds) | `functions`,`dynamic reference`,`ref` |
235235
| [W1019<a name="W1019"></a>](../src/cfnlint/rules/functions/SubParametersUsed.py) | Validate that parameters to a Fn::Sub are used | Validate that Fn::Sub Parameters are used | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-sub.html) | `functions`,`sub` |
236236
| [W1020<a name="W1020"></a>](../src/cfnlint/rules/functions/SubUnneeded.py) | Sub isn't needed if it doesn't have a variable defined | Checks sub strings to see if a variable is defined. | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-sub.html) | `functions`,`sub` |
237+
| [W1028<a name="W1028"></a>](../src/cfnlint/rules/functions/IfUnsatisfiable.py) | Check Fn::If has a path that cannot be reached | Check Fn::If path can be reached | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-conditions.html#intrinsic-function-reference-conditions-if) | `functions`,`if` |
237238
| [W1030<a name="W1030"></a>](../src/cfnlint/rules/functions/RefResolved.py) | Validate the values that come from a Ref function | Resolve the Ref and then validate the values against the schema | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ref.html) | `functions`,`ref` |
238239
| [W1031<a name="W1031"></a>](../src/cfnlint/rules/functions/SubResolved.py) | Validate the values that come from a Fn::Sub function | Resolve the Fn::Sub and then validate the values against the schema | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-sub.html) | `functions`,`sub` |
239240
| [W1032<a name="W1032"></a>](../src/cfnlint/rules/functions/JoinResolved.py) | Validate the values that come from a Fn::Join function | Resolve the Fn::Join and then validate the values against the schema | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-join.html) | `functions`,`join` |
@@ -259,6 +260,7 @@ The following **221** rules are applied by this linter:
259260
| [W3034<a name="W3034"></a>](../src/cfnlint/rules/parameters/NumberRange.py) | Check if parameter values are between min and max | Check if parameter values value being between the minimum and maximum | | [Source](https://github.com/aws-cloudformation/cfn-lint/blob/main/docs/cfn-schema-specification.md#number-size) | `resources`,`property`,`number`,`size` |
260261
| [W3037*<a name="W3037*"></a>](../src/cfnlint/rules/resources/iam/Permissions.py) | Check IAM Permission configuration | Check for valid IAM Permissions | | [Source](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_action.html) | `properties`,`iam`,`permissions` |
261262
| [W3045<a name="W3045"></a>](../src/cfnlint/rules/resources/s3/AccessControlObsolete.py) | Controlling access to an S3 bucket should be done with bucket policies | Nearly all access control configurations can be more successfully achieved with bucket policies. Consider using bucket policies instead of access control. | | [Source](https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html) | `resources`,`s3` |
263+
| [W3663<a name="W3663"></a>](../src/cfnlint/rules/resources/lmbd/PermissionSourceAccount.py) | Validate SourceAccount is required property | When configuration a Lambda permission with a SourceArn that doesn't have an AccountId you should also specify the SourceAccount | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-sourceaccount) | `resources`,`lambda`,`permission` |
262264
| [W3687<a name="W3687"></a>](../src/cfnlint/rules/resources/ectwo/SecurityGroupProtocolsAndPortsExclusive.py) | Validate that ports aren't specified for certain protocols | When using a protocol other than icmp, icmpv6, tcp, or udp the port ranges properties are ignored | | [Source]() | `resources` |
263265
| [W3688<a name="W3688"></a>](../src/cfnlint/rules/resources/rds/DbClusterSnapshotIdentifier.py) | When restoring DBCluster certain properties are ignored | When creating a DBCluster extra properties are ignored and could result in drift | | [Source]() | `resources`,`rds` |
264266
| [W3689<a name="W3689"></a>](../src/cfnlint/rules/resources/rds/DbClusterSourceDBClusterIdentifier.py) | When using a source DB certain properties are ignored | When creating a DBCluster from a source certain properties are ignored and could result in drift | | [Source]() | `resources`,`rds` |

src/cfnlint/data/AdditionalSpecs/Policies.json

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"VPCPolicyServiceActionMap": {
33
"Amazon DynamoDB For VPC Policies": [
44
"DescribeContinuousBackups",
5-
"DescribeBackup",
65
"DescribeReservedCapacity",
6+
"DescribeBackup",
77
"PurchaseReservedCapacityOfferings",
88
"ListBackups",
9-
"DeleteItem",
109
"Query",
10+
"DeleteItem",
1111
"DeleteBackup",
1212
"DescribeTable",
1313
"CreateTable",
@@ -1542,6 +1542,9 @@
15421542
"CreateConfiguredTable",
15431543
"CreateConfiguredTableAnalysisRule",
15441544
"CreateConfiguredTableAssociation",
1545+
"CreateConfiguredTableAssociationAnalysisRule",
1546+
"CreateIdMappingTable",
1547+
"CreateIdNamespaceAssociation",
15451548
"CreateMembership",
15461549
"CreatePrivacyBudgetTemplate",
15471550
"DeleteAnalysisTemplate",
@@ -1550,18 +1553,25 @@
15501553
"DeleteConfiguredTable",
15511554
"DeleteConfiguredTableAnalysisRule",
15521555
"DeleteConfiguredTableAssociation",
1556+
"DeleteConfiguredTableAssociationAnalysisRule",
1557+
"DeleteIdMappingTable",
1558+
"DeleteIdNamespaceAssociation",
15531559
"DeleteMember",
15541560
"DeleteMembership",
15551561
"DeletePrivacyBudgetTemplate",
15561562
"GetAnalysisTemplate",
15571563
"GetCollaboration",
15581564
"GetCollaborationAnalysisTemplate",
15591565
"GetCollaborationConfiguredAudienceModelAssociation",
1566+
"GetCollaborationIdNamespaceAssociation",
15601567
"GetCollaborationPrivacyBudgetTemplate",
15611568
"GetConfiguredAudienceModelAssociation",
15621569
"GetConfiguredTable",
15631570
"GetConfiguredTableAnalysisRule",
15641571
"GetConfiguredTableAssociation",
1572+
"GetConfiguredTableAssociationAnalysisRule",
1573+
"GetIdMappingTable",
1574+
"GetIdNamespaceAssociation",
15651575
"GetMembership",
15661576
"GetPrivacyBudgetTemplate",
15671577
"GetProtectedQuery",
@@ -1570,19 +1580,23 @@
15701580
"ListAnalysisTemplates",
15711581
"ListCollaborationAnalysisTemplates",
15721582
"ListCollaborationConfiguredAudienceModelAssociations",
1583+
"ListCollaborationIdNamespaceAssociations",
15731584
"ListCollaborationPrivacyBudgetTemplates",
15741585
"ListCollaborationPrivacyBudgets",
15751586
"ListCollaborations",
15761587
"ListConfiguredAudienceModelAssociations",
15771588
"ListConfiguredTableAssociations",
15781589
"ListConfiguredTables",
1590+
"ListIdMappingTables",
1591+
"ListIdNamespaceAssociations",
15791592
"ListMembers",
15801593
"ListMemberships",
15811594
"ListPrivacyBudgetTemplates",
15821595
"ListPrivacyBudgets",
15831596
"ListProtectedQueries",
15841597
"ListSchemas",
15851598
"ListTagsForResource",
1599+
"PopulateIdMappingTable",
15861600
"PreviewPrivacyImpact",
15871601
"StartProtectedQuery",
15881602
"TagResource",
@@ -1593,6 +1607,9 @@
15931607
"UpdateConfiguredTable",
15941608
"UpdateConfiguredTableAnalysisRule",
15951609
"UpdateConfiguredTableAssociation",
1610+
"UpdateConfiguredTableAssociationAnalysisRule",
1611+
"UpdateIdMappingTable",
1612+
"UpdateIdNamespaceAssociation",
15961613
"UpdateMembership",
15971614
"UpdatePrivacyBudgetTemplate",
15981615
"UpdateProtectedQuery"
@@ -4051,6 +4068,7 @@
40514068
"DeleteListener",
40524069
"DeleteLoadBalancer",
40534070
"DeleteRule",
4071+
"DeleteSharedTrustStoreAssociation",
40544072
"DeleteTargetGroup",
40554073
"DeleteTrustStore",
40564074
"DeregisterTargets",
@@ -4068,6 +4086,7 @@
40684086
"DescribeTrustStoreAssociations",
40694087
"DescribeTrustStoreRevocations",
40704088
"DescribeTrustStores",
4089+
"GetResourcePolicy",
40714090
"GetTrustStoreCaCertificatesBundle",
40724091
"GetTrustStoreRevocationContent",
40734092
"ModifyListener",
@@ -4627,7 +4646,8 @@
46274646
"UpdateIdNamespace",
46284647
"UpdateMatchingWorkflow",
46294648
"UpdateSchemaMapping",
4630-
"UseIdNamespace"
4649+
"UseIdNamespace",
4650+
"UseWorkflow"
46314651
],
46324652
"HasResource": true,
46334653
"StringPrefix": "entityresolution",
@@ -8963,17 +8983,20 @@
89638983
"CreateIndex",
89648984
"CreateView",
89658985
"DeleteIndex",
8986+
"DeleteResourcePolicy",
89668987
"DeleteView",
89678988
"DisassociateDefaultView",
89688989
"GetAccountLevelServiceConfiguration",
89698990
"GetDefaultView",
89708991
"GetIndex",
8992+
"GetResourcePolicy",
89718993
"GetView",
89728994
"ListIndexes",
89738995
"ListIndexesForMembers",
89748996
"ListSupportedResourceTypes",
89758997
"ListTagsForResource",
89768998
"ListViews",
8999+
"PutResourcePolicy",
89779000
"Search",
89789001
"TagResource",
89799002
"UntagResource",
@@ -13498,6 +13521,7 @@
1349813521
"ReplicateInstance",
1349913522
"ResumeContact",
1350013523
"ResumeContactRecording",
13524+
"SearchAgentStatuses",
1350113525
"SearchAvailablePhoneNumbers",
1350213526
"SearchContactFlowModules",
1350313527
"SearchContactFlows",
@@ -13510,6 +13534,7 @@
1351013534
"SearchResourceTags",
1351113535
"SearchRoutingProfiles",
1351213536
"SearchSecurityProfiles",
13537+
"SearchUserHierarchyGroups",
1351313538
"SearchUsers",
1351413539
"SearchVocabularies",
1351513540
"SendChatIntegrationEvent",
@@ -15391,7 +15416,7 @@
1539115416
"DescribePullThroughCacheRules",
1539215417
"DescribeRegistry",
1539315418
"DescribeRepositories",
15394-
"DescribeRepositoryCreationTemplate",
15419+
"DescribeRepositoryCreationTemplates",
1539515420
"GetAuthorizationToken",
1539615421
"GetDownloadUrlForLayer",
1539715422
"GetLifecyclePolicy",
@@ -15416,6 +15441,7 @@
1541615441
"TagResource",
1541715442
"UntagResource",
1541815443
"UpdatePullThroughCacheRule",
15444+
"UpdateRepositoryCreationTemplate",
1541915445
"UploadLayerPart",
1542015446
"ValidatePullThroughCacheRule"
1542115447
],
@@ -15689,6 +15715,7 @@
1568915715
"aws:TagKeys",
1569015716
"eks:accessEntryType",
1569115717
"eks:accessScope",
15718+
"eks:authenticationMode",
1569215719
"eks:bootstrapClusterCreatorAdminPermissions",
1569315720
"eks:bootstrapSelfManagedAddons",
1569415721
"eks:clientId",
@@ -15698,6 +15725,7 @@
1569815725
"eks:namespaces",
1569915726
"eks:policyArn",
1570015727
"eks:principalArn",
15728+
"eks:supportType",
1570115729
"eks:username"
1570215730
]
1570315731
},
@@ -19439,6 +19467,8 @@
1943919467
"ARNRegex": "^arn:aws:quicksight:.+",
1944019468
"Actions": [
1944119469
"AccountConfigurations",
19470+
"BatchCreateTopicReviewedAnswer",
19471+
"BatchDeleteTopicReviewedAnswer",
1944219472
"CancelIngestion",
1944319473
"CreateAccountCustomization",
1944419474
"CreateAccountSubscription",
@@ -19573,6 +19603,7 @@
1957319603
"ListThemeVersions",
1957419604
"ListThemes",
1957519605
"ListTopicRefreshSchedules",
19606+
"ListTopicReviewedAnswers",
1957619607
"ListTopics",
1957719608
"ListUserGroups",
1957819609
"ListUsers",
@@ -21320,7 +21351,7 @@
2132021351
"DeleteMonitoringSchedule",
2132121352
"DeleteNotebookInstance",
2132221353
"DeleteNotebookInstanceLifecycleConfig",
21323-
"DeleteOptimization",
21354+
"DeleteOptimizationJob",
2132421355
"DeletePipeline",
2132521356
"DeleteProject",
2132621357
"DeleteRecord",
@@ -22539,6 +22570,7 @@
2253922570
"DeleteRetentionPolicy",
2254022571
"DeleteSmtpGateway",
2254122572
"DeleteUser",
22573+
"DeliverToMailbox",
2254222574
"DeregisterFromWorkMail",
2254322575
"DeregisterMailDomain",
2254422576
"DescribeEmailMonitoringConfiguration",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"e307e8687bfecd606f0e899afa9dc391\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"85b56752f0864a6fd189c613a0e47255\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"4ef0c1c5720349e0aa42d8c03f2190c6\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
1+
{"etag": "\"b19fcd32eff148223b62a4148953b119\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"2d862f85e75942a5867c34b7bfc3c77c\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"061fcc4e5d7d49475ef727f277446802\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"6914ce33d190b3e1e349df96fe4db5f9\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"1eea87765e05e4fe0c54eae867b64baf\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"c4159999fa081b0705a8cc19ad90fb11\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"3571e7b68e8593f542e96b1fe9b56043\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"5e3092644eadd30dbd152151fb69bae6\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"0fe3ad340ccb03c06292363e84dd5246\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"5d4e9225c20358129f764181a0c1935a\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"2e59ca52e0b29b76304f8aac77631d2a\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"86ec8b36787356cf267f5f432a71b88a\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
1+
{"etag": "\"09adaeca3c99a11e03d10ae01d6b1362\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"91d93202afea003b5e2abc8b51a7f3a2\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"dc24a194340be9e0c96baac963c8129e\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"990578a386215d4d7dd180c403b696f2\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"5f15349b97c3abf5883e58376652acff\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"178d4817771d0ee17f6c632e6263e86d\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"733b9e73705a7cdef42ad28e7e5aed05\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"f542e9eb0c8ef1fda4e9accd88d04ec1\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"5caa311a2432099f815a8578e08ddd65\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"7a84558ed3d76ce6d02ea6d1bf326431\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"85a5a687a0eb9fc8b1de1c1038210408\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"727a48603159871b28e5fb26effb6547\"", "url": "https://schema.cloudformation.us-east-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"4c7d6ce1da2d6f269637862184c4f1ec\"", "url": "https://schema.cloudformation.us-east-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"aecc2aa6763a28865b7f195a594bef80\"", "url": "https://schema.cloudformation.ap-southeast-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"2ece9b6761f65207a718209f0a3292dc\"", "url": "https://schema.cloudformation.ap-southeast-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"4b19eb4dbe6984e7ed3559819f5bfb5e\"", "url": "https://schema.cloudformation.ap-northeast-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"5625f354ee10e3d7a0ecc856b1c14995\"", "url": "https://schema.cloudformation.ap-northeast-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"947213c21450c8444848f8c5b4846dda\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"32c817af301205e3593329ed9afdf5e7\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"32c73a70fccaa874203ff2eb8914a077\"", "url": "https://schema.cloudformation.ap-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"1ecbe028dc219b57affb8779e23c43bd\"", "url": "https://schema.cloudformation.ap-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"ffccd5671a87d141834e154742dae609\"", "url": "https://schema.cloudformation.sa-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"0b3eb52c783248db6d6662c7a595426e\"", "url": "https://schema.cloudformation.sa-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"463e5a886dddb06914d469bac109b95d\"", "url": "https://schema.cloudformation.ap-southeast-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"707e5da477848d380366e54cb284fa03\"", "url": "https://schema.cloudformation.ap-southeast-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"b6c9ba76f037123fce8547681caf6c02\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"44c5f3dddd70045c86f404818d37ed52\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"9767f723613c3d641cbb8690ae37bd53\"", "url": "https://schema.cloudformation.eu-central-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"aa5e348b4f7132e252e9bd49c07b4ace\"", "url": "https://schema.cloudformation.eu-central-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"d886ddf5ed68d76eab9d79cec3239472\"", "url": "https://schema.cloudformation.eu-north-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"6dfebdf907165e623ac7c6ae78f69e89\"", "url": "https://schema.cloudformation.eu-north-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"1147baab40516d3a031370d4bc77285e\"", "url": "https://schema.cloudformation.eu-south-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"1d5fccf6e137b998472b6b1b8b6b87b5\"", "url": "https://schema.cloudformation.eu-south-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"1949bdac883ab18547ad1e2d650edd28\"", "url": "https://schema.cloudformation.ca-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"6e633bde703434351ccd10984b6f089a\"", "url": "https://schema.cloudformation.ca-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"4a0b2550d58f623905a8d24bbff19624\"", "url": "https://schema.cloudformation.eu-west-3.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"5f7f32e25bbcdf5f21fcf0254ff962ff\"", "url": "https://schema.cloudformation.eu-west-3.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"b0fd8e1f3ca585fa159eadb2f2bf2853\"", "url": "https://schema.cloudformation.ap-northeast-3.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"6192f56c4aa13f235ff9c99caaf673dd\"", "url": "https://schema.cloudformation.ap-northeast-3.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"88bea80c58b26f8df4bc055c49d9c882\"", "url": "https://schema.cloudformation.us-west-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"ec483e0222a4f80be7a780038e2071e4\"", "url": "https://schema.cloudformation.us-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"6003f4951dd1c96e9665789bc27c9f3a\"", "url": "https://schema.cloudformation.ap-south-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"009bc4e7f3fb6dbd5ef6cb62517d9493\"", "url": "https://schema.cloudformation.ap-south-2.amazonaws.com/CloudformationSchema.zip"}

0 commit comments

Comments
 (0)