Skip to content

Commit

Permalink
Merge branch 'main' into nlbAttributes
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinZZ authored Mar 19, 2024
2 parents bb1b1f2 + 4ff3565 commit 2f4d6e1
Show file tree
Hide file tree
Showing 37 changed files with 1,751 additions and 79 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/request-cli-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
persist-credentials: false
- name: Find changed cli files
id: changed-cli-files
uses: tj-actions/changed-files@aa08304bd477b800d468db44fe10f6c61f7f7b11
uses: tj-actions/changed-files@77af4bed286740ef1a6387dc4e4e4dec39f96054
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files_yaml: |
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"Resources": {
"ApiLimitConfigsC74D7493": {
"Type": "AWS::AppSync::GraphQLApi",
"Properties": {
"AuthenticationType": "API_KEY",
"Name": "ApiLimitConfigs",
"QueryDepthLimit": 2,
"ResolverCountLimit": 2
}
},
"ApiLimitConfigsSchema1451D8D1": {
"Type": "AWS::AppSync::GraphQLSchema",
"Properties": {
"ApiId": {
"Fn::GetAtt": [
"ApiLimitConfigsC74D7493",
"ApiId"
]
},
"Definition": "type test {\n version: String!\n}\ntype Query {\n getTests: [test]!\n}\ntype Mutation {\n addTest(version: String!): test\n}\n"
}
},
"ApiLimitConfigsDefaultApiKey7D682F04": {
"Type": "AWS::AppSync::ApiKey",
"Properties": {
"ApiId": {
"Fn::GetAtt": [
"ApiLimitConfigsC74D7493",
"ApiId"
]
}
},
"DependsOn": [
"ApiLimitConfigsSchema1451D8D1"
]
},
"ApiLimitConfigsNoneDS3CA3BDA6": {
"Type": "AWS::AppSync::DataSource",
"Properties": {
"ApiId": {
"Fn::GetAtt": [
"ApiLimitConfigsC74D7493",
"ApiId"
]
},
"Name": "NoneDS",
"Type": "NONE"
}
}
},
"Parameters": {
"BootstrapVersion": {
"Type": "AWS::SSM::Parameter::Value<String>",
"Default": "/cdk-bootstrap/hnb659fds/version",
"Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
}
},
"Rules": {
"CheckBootstrapVersion": {
"Assertions": [
{
"Assert": {
"Fn::Not": [
{
"Fn::Contains": [
[
"1",
"2",
"3",
"4",
"5"
],
{
"Ref": "BootstrapVersion"
}
]
}
]
},
"AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
}
]
}
}
}
Loading

0 comments on commit 2f4d6e1

Please sign in to comment.