Skip to content

Commit 34d4894

Browse files
Update CloudFormation schemas to 2024-06-17 (#3299)
Co-authored-by: kddejong <[email protected]>
1 parent efa54a5 commit 34d4894

File tree

278 files changed

+103908
-96462
lines changed

Some content is hidden

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

278 files changed

+103908
-96462
lines changed

docs/rules.md

+4-3
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 **207** rules are applied by this linter:
49+
The following **208** rules are applied by this linter:
5050

5151
| Rule ID | Title | Description | Config<br />(Name:Type:Default) | Source | Tags |
5252
| -------- | ----- | ----------- | ---------- | ------ | ---- |
@@ -95,8 +95,9 @@ The following **207** rules are applied by this linter:
9595
| [E2015<a name="E2015"></a>](../src/cfnlint/rules/parameters/Default.py) | Default value is within parameter constraints | Making sure the parameters have a default value inside AllowedValues, MinValue, MaxValue, AllowedPattern | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html) | `parameters` |
9696
| [E2529<a name="E2529"></a>](../src/cfnlint/rules/resources/lmbd/EventsLogGroupName.py) | Check for SubscriptionFilters have beyond 2 attachments to a CloudWatch Log Group | The current limit for a CloudWatch Log Group is they can have 2 subscription filters. We will look for duplicate LogGroupNames inside Subscription Filters and make sure they are within 2. This doesn't account for any other subscription filters getting set. | | [Source](https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#user-content-cloudwatchlogs) | `resources`,`lambda` |
9797
| [E2530<a name="E2530"></a>](../src/cfnlint/rules/resources/lmbd/SnapStartSupported.py) | SnapStart supports the configured runtime | To properly leverage SnapStart, you must have a runtime of Java11 or greater | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html) | `resources`,`lambda` |
98-
| [E2531<a name="E2531"></a>](../src/cfnlint/rules/resources/lmbd/DeprecatedRuntimeEnd.py) | Validate if lambda runtime is deprecated | Check the lambda runtime has reached the end of life | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) | `resources`,`lambda`,`runtime` |
98+
| [E2531<a name="E2531"></a>](../src/cfnlint/rules/resources/lmbd/DeprecatedRuntimeCreate.py) | Validate if lambda runtime is deprecated | Check the lambda runtime has reached the end of life | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) | `resources`,`lambda`,`runtime` |
9999
| [E2532<a name="E2532"></a>](../src/cfnlint/rules/resources/stepfunctions/StateMachine.py) | Check State Machine Definition for proper syntax | Check the State Machine String Definition to make sure its JSON. Validate basic syntax of the file to determine validity. | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html) | `resources`,`stepfunctions` |
100+
| [E2533<a name="E2533"></a>](../src/cfnlint/rules/resources/lmbd/DeprecatedRuntimeUpdate.py) | Check if Lambda Function Runtimes are updatable | Check if an EOL Lambda Runtime is specified and you cannot update the function | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html) | `resources`,`lambda`,`runtime` |
100101
| [E2540<a name="E2540"></a>](../src/cfnlint/rules/resources/codepipeline/CodepipelineStages.py) | CodePipeline Stages | See if CodePipeline stages are set correctly | | [Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#pipeline-requirements) | `properties`,`codepipeline` |
101102
| [E2541<a name="E2541"></a>](../src/cfnlint/rules/resources/codepipeline/CodepipelineStageActions.py) | CodePipeline Stage Actions | See if CodePipeline stage actions are set correctly | | [Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#pipeline-requirements) | `resources`,`codepipeline` |
102103
| [E3001<a name="E3001"></a>](../src/cfnlint/rules/resources/Configuration.py) | Basic CloudFormation Resource Check | Making sure the basic CloudFormation resources are properly configured | | [Source](https://github.com/aws-cloudformation/cfn-python-lint) | `resources` |
@@ -239,7 +240,7 @@ The following **207** rules are applied by this linter:
239240
| [W2506<a name="W2506"></a>](../src/cfnlint/rules/resources/properties/ImageId.py) | Check if ImageId Parameters have the correct type | See if there are any refs for ImageId to a parameter of inappropriate type. Appropriate Types are [AWS::EC2::Image::Id, AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>] | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/best-practices.html#parmtypes) | `parameters`,`ec2`,`imageid` |
240241
| [W2511<a name="W2511"></a>](../src/cfnlint/rules/resources/iam/PolicyVersion.py) | Check IAM Resource Policies syntax | See if the elements inside an IAM Resource policy are configured correctly. | | [Source](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html) | `properties`,`iam` |
241242
| [W2530<a name="W2530"></a>](../src/cfnlint/rules/resources/lmbd/SnapStart.py) | Validate that SnapStart is properly configured | To properly leverage SnapStart, you must configure both the lambda function and attach a Lambda version resource | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html) | `resources`,`lambda` |
242-
| [W2531<a name="W2531"></a>](../src/cfnlint/rules/resources/lmbd/DeprecatedRuntimeEol.py) | Check if EOL Lambda Function Runtimes are used | Check if an EOL Lambda Runtime is specified and give a warning if used | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) | `resources`,`lambda`,`runtime` |
243+
| [W2531<a name="W2531"></a>](../src/cfnlint/rules/resources/lmbd/DeprecatedRuntimeEol.py) | Check if EOL Lambda Function Runtimes are used | Check if an EOL Lambda Runtime is specified and give a warning if used. | | [Source](https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html) | `resources`,`lambda`,`runtime` |
243244
| [W2533<a name="W2533"></a>](../src/cfnlint/rules/resources/lmbd/ZipPackageRequiredProperties.py) | Check required properties for Lambda if the deployment package is a .zip file | When the package type is Zip, you must also specify the `handler` and `runtime` properties. | | [Source](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html) | `resources`,`lambda` |
244245
| [W3002<a name="W3002"></a>](../src/cfnlint/rules/resources/properties/PropertiesTemplated.py) | Warn when properties are configured to only work with the package command | Some properties can be configured to only work with the CloudFormationpackage command. Warn when this is the case so user is aware. | | [Source](https://docs.aws.amazon.com/cli/latest/reference/cloudformation/package.html) | `resources` |
245246
| [W3005<a name="W3005"></a>](../src/cfnlint/rules/resources/DependsOnObsolete.py) | Check obsolete DependsOn configuration for Resources | Check if DependsOn is specified if not needed. A Ref or a Fn::GetAtt already is an implicit dependency. | | [Source](https://aws.amazon.com/blogs/devops/optimize-aws-cloudformation-templates/) | `resources`,`dependson`,`ref`,`getatt` |

src/cfnlint/data/AdditionalSpecs/Policies.json

+49
Original file line numberDiff line numberDiff line change
@@ -7087,6 +7087,7 @@
70877087
"DeleteAlias",
70887088
"DeleteCustomKeyStore",
70897089
"DeleteImportedKeyMaterial",
7090+
"DeriveSharedSecret",
70907091
"DescribeCustomKeyStores",
70917092
"DescribeKey",
70927093
"DisableKey",
@@ -7151,6 +7152,7 @@
71517152
"kms:GrantIsForAWSResource",
71527153
"kms:GrantOperations",
71537154
"kms:GranteePrincipal",
7155+
"kms:KeyAgreementAlgorithm",
71547156
"kms:KeyOrigin",
71557157
"kms:KeySpec",
71567158
"kms:KeyUsage",
@@ -7467,6 +7469,43 @@
74677469
"HasResource": false,
74687470
"StringPrefix": "license-manager-user-subscriptions"
74697471
},
7472+
"AWS Mainframe Modernization Application Testing provides tools and resources for automated functional equivalence testing for your migration projects.": {
7473+
"ARNFormat": "arn:aws:apptest:${Region}:${Account}:${ResourceType}/${ResourceId}",
7474+
"ARNRegex": "^arn:aws:apptest:${Region}:${Account}:.+",
7475+
"Actions": [
7476+
"CreateTestCase",
7477+
"CreateTestConfiguration",
7478+
"CreateTestSuite",
7479+
"DeleteTestCase",
7480+
"DeleteTestConfiguration",
7481+
"DeleteTestRun",
7482+
"DeleteTestSuite",
7483+
"GetTestCase",
7484+
"GetTestConfiguration",
7485+
"GetTestRunStep",
7486+
"GetTestSuite",
7487+
"ListTagsForResource",
7488+
"ListTestCases",
7489+
"ListTestConfigurations",
7490+
"ListTestRunSteps",
7491+
"ListTestRunTestCases",
7492+
"ListTestRuns",
7493+
"ListTestSuites",
7494+
"StartTestRun",
7495+
"TagResource",
7496+
"UntagResource",
7497+
"UpdateTestCase",
7498+
"UpdateTestConfiguration",
7499+
"UpdateTestSuite"
7500+
],
7501+
"HasResource": true,
7502+
"StringPrefix": "apptest",
7503+
"conditionKeys": [
7504+
"aws:RequestTag/${TagKey}",
7505+
"aws:ResourceTag/${TagKey}",
7506+
"aws:TagKeys"
7507+
]
7508+
},
74707509
"AWS Mainframe Modernization Service": {
74717510
"ARNFormat": "arn:aws:m2:${Region}:${Account}:${ResourceType}/${ResourceId}",
74727511
"ARNRegex": "^arn:aws:m2:${Region}:${Account}:.+",
@@ -10316,6 +10355,7 @@
1031610355
},
1031710356
"AWS Tax Settings": {
1031810357
"Actions": [
10358+
"BatchDeleteTaxRegistration",
1031910359
"BatchPutTaxRegistration",
1032010360
"DeleteTaxRegistration",
1032110361
"GetExemptions",
@@ -13357,6 +13397,8 @@
1335713397
"ResumeContact",
1335813398
"ResumeContactRecording",
1335913399
"SearchAvailablePhoneNumbers",
13400+
"SearchContactFlowModules",
13401+
"SearchContactFlows",
1336013402
"SearchContacts",
1336113403
"SearchHoursOfOperations",
1336213404
"SearchPredefinedAttributes",
@@ -13637,6 +13679,7 @@
1363713679
"AcceptPredictions",
1363813680
"AcceptSubscriptionRequest",
1363913681
"AddPolicyGrant",
13682+
"AssociateEnvironmentRole",
1364013683
"CancelMetadataGenerationRun",
1364113684
"CancelSubscription",
1364213685
"CreateAsset",
@@ -13645,6 +13688,7 @@
1364513688
"CreateDataSource",
1364613689
"CreateDomain",
1364713690
"CreateEnvironment",
13691+
"CreateEnvironmentAction",
1364813692
"CreateEnvironmentBlueprint",
1364913693
"CreateEnvironmentProfile",
1365013694
"CreateFormType",
@@ -13664,6 +13708,7 @@
1366413708
"DeleteDomain",
1366513709
"DeleteDomainSharingPolicy",
1366613710
"DeleteEnvironment",
13711+
"DeleteEnvironmentAction",
1366713712
"DeleteEnvironmentBlueprint",
1366813713
"DeleteEnvironmentBlueprintConfiguration",
1366913714
"DeleteEnvironmentProfile",
@@ -13677,13 +13722,15 @@
1367713722
"DeleteSubscriptionRequest",
1367813723
"DeleteSubscriptionTarget",
1367913724
"DeleteTimeSeriesDataPoints",
13725+
"DisassociateEnvironmentRole",
1368013726
"GetAsset",
1368113727
"GetAssetType",
1368213728
"GetDataSource",
1368313729
"GetDataSourceRun",
1368413730
"GetDomain",
1368513731
"GetDomainSharingPolicy",
1368613732
"GetEnvironment",
13733+
"GetEnvironmentAction",
1368713734
"GetEnvironmentActionLink",
1368813735
"GetEnvironmentBlueprint",
1368913736
"GetEnvironmentBlueprintConfiguration",
@@ -13710,6 +13757,7 @@
1371013757
"ListDataSourceRuns",
1371113758
"ListDataSources",
1371213759
"ListDomains",
13760+
"ListEnvironmentActions",
1371313761
"ListEnvironmentBlueprintConfigurationSummaries",
1371413762
"ListEnvironmentBlueprintConfigurations",
1371513763
"ListEnvironmentBlueprints",
@@ -13753,6 +13801,7 @@
1375313801
"UpdateDataSourceRunActivities",
1375413802
"UpdateDomain",
1375513803
"UpdateEnvironment",
13804+
"UpdateEnvironmentAction",
1375613805
"UpdateEnvironmentBlueprint",
1375713806
"UpdateEnvironmentConfiguration",
1375813807
"UpdateEnvironmentDeploymentStatus",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"8e21dc9f4caa5b99df836d2724e85007\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"cdb4593fcac967a7953bd030aff5027c\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"cfe3e842de22c2f66f656545f8ab271f\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
1+
{"etag": "\"03f48a2ce8c8d6eb406c8e2a1dcddb66\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"3efb1f36bf2069dfd90693d73255b99b\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"a636db11cda573b80a193d1950daf01f\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"e862b8d52f9fb2a4800ed9ae537c381d\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"60fe86eb4e06ffb67f0267639b251148\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"f0cbfdd2a88a3e39fe4587698aece4bc\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"cea24b0c427407219e8f760663456f35\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"b995e7d567bfe5107c701b7708ccc12c\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"681fd2d8b6330aeca935c764374a2726\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"71b34442c9fb5fae86f1a0ef0bca7c70\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"c7e06c53619d328d4bfed169e17e787d\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"be94f38716efb8148cffca7d32b4b5fc\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
1+
{"etag": "\"dda33c8f32c637d0c007cce8084f679d\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"03a41aa9d5c778053c384b4135e05f42\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"cd84bd37640dc3808e3668c2c77f3698\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"dc0a4ce69ad2a682aa4f63ccfc0c9880\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"78e34291d3489f56a1c675ff73532078\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"3293c078f8550d3960de9ee1279093bc\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"276ccf3f88b109fe11c709338bf4c037\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"f24d7e523686f97241c4735c1840d62e\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"4a884012e9db2f3e4d935e3481b4152d\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"9571fcb8dfb44407cfd91787059d29d4\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"1b6db8a7463c1880245c48d36ee48d18\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"0901a777ed5ca3b8655822dd065e606d\"", "url": "https://schema.cloudformation.us-east-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"00976fa1666c3588090e907014d9df77\"", "url": "https://schema.cloudformation.us-east-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"6e7282388d60ba18f7a1e810c32ae5e6\"", "url": "https://schema.cloudformation.ap-southeast-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"19e62cbbcb12c9476c7c361a91e9b5af\"", "url": "https://schema.cloudformation.ap-southeast-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"4481d14e13ecb83021f3fa7732a072d4\"", "url": "https://schema.cloudformation.ap-northeast-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"c60388da72793e1fe81a7813489ce384\"", "url": "https://schema.cloudformation.ap-northeast-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"b18c7ffb485d2d897035614eacbb4ff7\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"bbb5bf7f3370bceb7d1b4beaabcdc237\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"8da7617ff7251272a0ecc94bb36d8c23\"", "url": "https://schema.cloudformation.ap-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"945f2716c9bb623904ef8f9fe2c59aff\"", "url": "https://schema.cloudformation.ap-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"a8ef7c07a5b62c4de0f8e6fb79fc4b0b\"", "url": "https://schema.cloudformation.sa-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"637da6fd0bd73a84088d0ffe95ad7944\"", "url": "https://schema.cloudformation.sa-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"78df17182748cca99b8a8efba79d2ecd\"", "url": "https://schema.cloudformation.ap-southeast-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"62214cbc19458936b54ebb61d4d4634f\"", "url": "https://schema.cloudformation.ap-southeast-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"b2bf37b2de7adcd8ebe025b8c1b7e3f3\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"f1efaf438b464893f2f712091eded777\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"586ccc967824b79951230311f96a5c8f\"", "url": "https://schema.cloudformation.eu-central-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"b4d57c043d5d04470c4e15a1c7e49dd0\"", "url": "https://schema.cloudformation.eu-central-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"f4b1a7c7eb7851f07eb698cffc58ac08\"", "url": "https://schema.cloudformation.eu-north-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"2f6277743c445621b3f576fb165b2510\"", "url": "https://schema.cloudformation.eu-north-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"997d1c02e4833e76905453998aeadaf1\"", "url": "https://schema.cloudformation.eu-south-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"76314965ff35aae675eafe396a3facb6\"", "url": "https://schema.cloudformation.eu-south-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"9c8967d0c5f53fc40ed297cd2b08aa35\"", "url": "https://schema.cloudformation.ca-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"46d2ce61c1450d97596229d5edd46112\"", "url": "https://schema.cloudformation.ca-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"189d61fc63b82d5afd6fa1d7c24df012\"", "url": "https://schema.cloudformation.eu-west-3.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"b2eae20c61da6b4d8ebdef6c4bd527ab\"", "url": "https://schema.cloudformation.eu-west-3.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"ed6a3644fb2576d2c563b9b5dc7e4f99\"", "url": "https://schema.cloudformation.ap-northeast-3.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"a3bd14fb83c750e6564b723b183a6913\"", "url": "https://schema.cloudformation.ap-northeast-3.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"f8c5b158b24eed5770d4f5a9de04cb1f\"", "url": "https://schema.cloudformation.us-west-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"cd296e7259e30b63c339cbd7f675c176\"", "url": "https://schema.cloudformation.us-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"15ff053fecb2d9f390ead75a04a9fc40\"", "url": "https://schema.cloudformation.ap-south-2.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"c26c353a86643f2c7ac29579cdcab8b7\"", "url": "https://schema.cloudformation.ap-south-2.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"cf72a169c13940c71da83696f76618c4\"", "url": "https://schema.cloudformation.us-east-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"bc3b8e48d30f87023468c5b3529c1653\"", "url": "https://schema.cloudformation.us-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"etag": "\"5789ec51cc517240c3ff889d308c1c8d\"", "url": "https://schema.cloudformation.il-central-1.amazonaws.com/CloudformationSchema.zip"}
1+
{"etag": "\"a7e55b6581b7ad705f5d937ba7516b37\"", "url": "https://schema.cloudformation.il-central-1.amazonaws.com/CloudformationSchema.zip"}

0 commit comments

Comments
 (0)