Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,23 +60,23 @@ Resources:
- IpProtocol: tcp
FromPort: 8162
ToPort: 8162
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 61617
ToPort: 61617
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 5671
ToPort: 5671
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 61614
ToPort: 61614
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 8883
ToPort: 8883
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16

MyLambdaExecutionRole:
Type: AWS::IAM::Role
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,23 +60,23 @@ Resources:
- IpProtocol: tcp
FromPort: 8162
ToPort: 8162
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 61617
ToPort: 61617
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 5671
ToPort: 5671
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 61614
ToPort: 61614
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16
- IpProtocol: tcp
FromPort: 8883
ToPort: 8883
CidrIp: 0.0.0.0/0
CidrIp: 10.0.0.0/16

MyMqBroker:
Properties:
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/graphqlapi_function_by_id.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Resources:
Properties:
ApiId: !GetAtt SuperCoolAPI.ApiId
Code: this is my epic code
DataSourceName: some-cool-datasource
DataSourceName: someCoolDataSource
Name: MyFunction
Runtime:
Name: APPSYNC_JS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"Code": "this is my epic code",
"DataSourceName": "some-cool-datasource",
"DataSourceName": "someCoolDataSource",
"Name": "MyFunction",
"Runtime": {
"Name": "APPSYNC_JS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"Code": "this is my epic code",
"DataSourceName": "some-cool-datasource",
"DataSourceName": "someCoolDataSource",
"Name": "MyFunction",
"Runtime": {
"Name": "APPSYNC_JS",
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/output/graphqlapi_function_by_id.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"Code": "this is my epic code",
"DataSourceName": "some-cool-datasource",
"DataSourceName": "someCoolDataSource",
"Name": "MyFunction",
"Runtime": {
"Name": "APPSYNC_JS",
Expand Down
Loading