Skip to content

Commit

Permalink
Update CloudFormation schemas to 2024-06-17 (#3299)
Browse files Browse the repository at this point in the history
Co-authored-by: kddejong <[email protected]>
  • Loading branch information
github-actions[bot] and kddejong authored Jun 17, 2024
1 parent efa54a5 commit 34d4894
Show file tree
Hide file tree
Showing 278 changed files with 103,908 additions and 96,462 deletions.
7 changes: 4 additions & 3 deletions docs/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ To include these rules, use the `-e/include-experimental` argument when running
## Rules
(_This documentation is generated by running `cfn-lint --update-documentation`, do not alter this manually_)

The following **207** rules are applied by this linter:
The following **208** rules are applied by this linter:

| Rule ID | Title | Description | Config<br />(Name:Type:Default) | Source | Tags |
| -------- | ----- | ----------- | ---------- | ------ | ---- |
Expand Down Expand Up @@ -95,8 +95,9 @@ The following **207** rules are applied by this linter:
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
Expand Down Expand Up @@ -239,7 +240,7 @@ The following **207** rules are applied by this linter:
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
| [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` |
Expand Down
49 changes: 49 additions & 0 deletions src/cfnlint/data/AdditionalSpecs/Policies.json
Original file line number Diff line number Diff line change
Expand Up @@ -7087,6 +7087,7 @@
"DeleteAlias",
"DeleteCustomKeyStore",
"DeleteImportedKeyMaterial",
"DeriveSharedSecret",
"DescribeCustomKeyStores",
"DescribeKey",
"DisableKey",
Expand Down Expand Up @@ -7151,6 +7152,7 @@
"kms:GrantIsForAWSResource",
"kms:GrantOperations",
"kms:GranteePrincipal",
"kms:KeyAgreementAlgorithm",
"kms:KeyOrigin",
"kms:KeySpec",
"kms:KeyUsage",
Expand Down Expand Up @@ -7467,6 +7469,43 @@
"HasResource": false,
"StringPrefix": "license-manager-user-subscriptions"
},
"AWS Mainframe Modernization Application Testing provides tools and resources for automated functional equivalence testing for your migration projects.": {
"ARNFormat": "arn:aws:apptest:${Region}:${Account}:${ResourceType}/${ResourceId}",
"ARNRegex": "^arn:aws:apptest:${Region}:${Account}:.+",
"Actions": [
"CreateTestCase",
"CreateTestConfiguration",
"CreateTestSuite",
"DeleteTestCase",
"DeleteTestConfiguration",
"DeleteTestRun",
"DeleteTestSuite",
"GetTestCase",
"GetTestConfiguration",
"GetTestRunStep",
"GetTestSuite",
"ListTagsForResource",
"ListTestCases",
"ListTestConfigurations",
"ListTestRunSteps",
"ListTestRunTestCases",
"ListTestRuns",
"ListTestSuites",
"StartTestRun",
"TagResource",
"UntagResource",
"UpdateTestCase",
"UpdateTestConfiguration",
"UpdateTestSuite"
],
"HasResource": true,
"StringPrefix": "apptest",
"conditionKeys": [
"aws:RequestTag/${TagKey}",
"aws:ResourceTag/${TagKey}",
"aws:TagKeys"
]
},
"AWS Mainframe Modernization Service": {
"ARNFormat": "arn:aws:m2:${Region}:${Account}:${ResourceType}/${ResourceId}",
"ARNRegex": "^arn:aws:m2:${Region}:${Account}:.+",
Expand Down Expand Up @@ -10316,6 +10355,7 @@
},
"AWS Tax Settings": {
"Actions": [
"BatchDeleteTaxRegistration",
"BatchPutTaxRegistration",
"DeleteTaxRegistration",
"GetExemptions",
Expand Down Expand Up @@ -13357,6 +13397,8 @@
"ResumeContact",
"ResumeContactRecording",
"SearchAvailablePhoneNumbers",
"SearchContactFlowModules",
"SearchContactFlows",
"SearchContacts",
"SearchHoursOfOperations",
"SearchPredefinedAttributes",
Expand Down Expand Up @@ -13637,6 +13679,7 @@
"AcceptPredictions",
"AcceptSubscriptionRequest",
"AddPolicyGrant",
"AssociateEnvironmentRole",
"CancelMetadataGenerationRun",
"CancelSubscription",
"CreateAsset",
Expand All @@ -13645,6 +13688,7 @@
"CreateDataSource",
"CreateDomain",
"CreateEnvironment",
"CreateEnvironmentAction",
"CreateEnvironmentBlueprint",
"CreateEnvironmentProfile",
"CreateFormType",
Expand All @@ -13664,6 +13708,7 @@
"DeleteDomain",
"DeleteDomainSharingPolicy",
"DeleteEnvironment",
"DeleteEnvironmentAction",
"DeleteEnvironmentBlueprint",
"DeleteEnvironmentBlueprintConfiguration",
"DeleteEnvironmentProfile",
Expand All @@ -13677,13 +13722,15 @@
"DeleteSubscriptionRequest",
"DeleteSubscriptionTarget",
"DeleteTimeSeriesDataPoints",
"DisassociateEnvironmentRole",
"GetAsset",
"GetAssetType",
"GetDataSource",
"GetDataSourceRun",
"GetDomain",
"GetDomainSharingPolicy",
"GetEnvironment",
"GetEnvironmentAction",
"GetEnvironmentActionLink",
"GetEnvironmentBlueprint",
"GetEnvironmentBlueprintConfiguration",
Expand All @@ -13710,6 +13757,7 @@
"ListDataSourceRuns",
"ListDataSources",
"ListDomains",
"ListEnvironmentActions",
"ListEnvironmentBlueprintConfigurationSummaries",
"ListEnvironmentBlueprintConfigurations",
"ListEnvironmentBlueprints",
Expand Down Expand Up @@ -13753,6 +13801,7 @@
"UpdateDataSourceRunActivities",
"UpdateDomain",
"UpdateEnvironment",
"UpdateEnvironmentAction",
"UpdateEnvironmentBlueprint",
"UpdateEnvironmentConfiguration",
"UpdateEnvironmentDeploymentStatus",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"8e21dc9f4caa5b99df836d2724e85007\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"cdb4593fcac967a7953bd030aff5027c\"", "url": "https://schema.cloudformation.eu-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"cfe3e842de22c2f66f656545f8ab271f\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
{"etag": "\"03f48a2ce8c8d6eb406c8e2a1dcddb66\"", "url": "https://schema.cloudformation.cn-north-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"3efb1f36bf2069dfd90693d73255b99b\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"a636db11cda573b80a193d1950daf01f\"", "url": "https://schema.cloudformation.us-gov-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"e862b8d52f9fb2a4800ed9ae537c381d\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"60fe86eb4e06ffb67f0267639b251148\"", "url": "https://schema.cloudformation.me-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"f0cbfdd2a88a3e39fe4587698aece4bc\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"cea24b0c427407219e8f760663456f35\"", "url": "https://schema.cloudformation.us-gov-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"b995e7d567bfe5107c701b7708ccc12c\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"681fd2d8b6330aeca935c764374a2726\"", "url": "https://schema.cloudformation.me-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"71b34442c9fb5fae86f1a0ef0bca7c70\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"c7e06c53619d328d4bfed169e17e787d\"", "url": "https://schema.cloudformation.eu-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"be94f38716efb8148cffca7d32b4b5fc\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
{"etag": "\"dda33c8f32c637d0c007cce8084f679d\"", "url": "https://schema.cloudformation.cn-northwest-1.amazonaws.com.cn/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"03a41aa9d5c778053c384b4135e05f42\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"cd84bd37640dc3808e3668c2c77f3698\"", "url": "https://schema.cloudformation.af-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"dc0a4ce69ad2a682aa4f63ccfc0c9880\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"78e34291d3489f56a1c675ff73532078\"", "url": "https://schema.cloudformation.us-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"3293c078f8550d3960de9ee1279093bc\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"276ccf3f88b109fe11c709338bf4c037\"", "url": "https://schema.cloudformation.eu-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"f24d7e523686f97241c4735c1840d62e\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"4a884012e9db2f3e4d935e3481b4152d\"", "url": "https://schema.cloudformation.ap-south-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"9571fcb8dfb44407cfd91787059d29d4\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"1b6db8a7463c1880245c48d36ee48d18\"", "url": "https://schema.cloudformation.ap-southeast-4.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"0901a777ed5ca3b8655822dd065e606d\"", "url": "https://schema.cloudformation.us-east-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"00976fa1666c3588090e907014d9df77\"", "url": "https://schema.cloudformation.us-east-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"6e7282388d60ba18f7a1e810c32ae5e6\"", "url": "https://schema.cloudformation.ap-southeast-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"19e62cbbcb12c9476c7c361a91e9b5af\"", "url": "https://schema.cloudformation.ap-southeast-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"4481d14e13ecb83021f3fa7732a072d4\"", "url": "https://schema.cloudformation.ap-northeast-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"c60388da72793e1fe81a7813489ce384\"", "url": "https://schema.cloudformation.ap-northeast-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"b18c7ffb485d2d897035614eacbb4ff7\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"bbb5bf7f3370bceb7d1b4beaabcdc237\"", "url": "https://schema.cloudformation.ap-southeast-3.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"8da7617ff7251272a0ecc94bb36d8c23\"", "url": "https://schema.cloudformation.ap-east-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"945f2716c9bb623904ef8f9fe2c59aff\"", "url": "https://schema.cloudformation.ap-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"a8ef7c07a5b62c4de0f8e6fb79fc4b0b\"", "url": "https://schema.cloudformation.sa-east-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"637da6fd0bd73a84088d0ffe95ad7944\"", "url": "https://schema.cloudformation.sa-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"78df17182748cca99b8a8efba79d2ecd\"", "url": "https://schema.cloudformation.ap-southeast-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"62214cbc19458936b54ebb61d4d4634f\"", "url": "https://schema.cloudformation.ap-southeast-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"b2bf37b2de7adcd8ebe025b8c1b7e3f3\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"f1efaf438b464893f2f712091eded777\"", "url": "https://schema.cloudformation.ca-west-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"586ccc967824b79951230311f96a5c8f\"", "url": "https://schema.cloudformation.eu-central-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"b4d57c043d5d04470c4e15a1c7e49dd0\"", "url": "https://schema.cloudformation.eu-central-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"f4b1a7c7eb7851f07eb698cffc58ac08\"", "url": "https://schema.cloudformation.eu-north-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"2f6277743c445621b3f576fb165b2510\"", "url": "https://schema.cloudformation.eu-north-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"997d1c02e4833e76905453998aeadaf1\"", "url": "https://schema.cloudformation.eu-south-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"76314965ff35aae675eafe396a3facb6\"", "url": "https://schema.cloudformation.eu-south-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"9c8967d0c5f53fc40ed297cd2b08aa35\"", "url": "https://schema.cloudformation.ca-central-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"46d2ce61c1450d97596229d5edd46112\"", "url": "https://schema.cloudformation.ca-central-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"189d61fc63b82d5afd6fa1d7c24df012\"", "url": "https://schema.cloudformation.eu-west-3.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"b2eae20c61da6b4d8ebdef6c4bd527ab\"", "url": "https://schema.cloudformation.eu-west-3.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"ed6a3644fb2576d2c563b9b5dc7e4f99\"", "url": "https://schema.cloudformation.ap-northeast-3.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"a3bd14fb83c750e6564b723b183a6913\"", "url": "https://schema.cloudformation.ap-northeast-3.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"f8c5b158b24eed5770d4f5a9de04cb1f\"", "url": "https://schema.cloudformation.us-west-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"cd296e7259e30b63c339cbd7f675c176\"", "url": "https://schema.cloudformation.us-west-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"15ff053fecb2d9f390ead75a04a9fc40\"", "url": "https://schema.cloudformation.ap-south-2.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"c26c353a86643f2c7ac29579cdcab8b7\"", "url": "https://schema.cloudformation.ap-south-2.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"cf72a169c13940c71da83696f76618c4\"", "url": "https://schema.cloudformation.us-east-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"bc3b8e48d30f87023468c5b3529c1653\"", "url": "https://schema.cloudformation.us-east-1.amazonaws.com/CloudformationSchema.zip"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"etag": "\"5789ec51cc517240c3ff889d308c1c8d\"", "url": "https://schema.cloudformation.il-central-1.amazonaws.com/CloudformationSchema.zip"}
{"etag": "\"a7e55b6581b7ad705f5d937ba7516b37\"", "url": "https://schema.cloudformation.il-central-1.amazonaws.com/CloudformationSchema.zip"}
Loading

0 comments on commit 34d4894

Please sign in to comment.