-
Notifications
You must be signed in to change notification settings - Fork 1
/
ask-resources.json
39 lines (39 loc) · 942 Bytes
/
ask-resources.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"askcliResourcesVersion": "2020-03-31",
"profiles": {
"default": {
"skillMetadata": {
"src": "./skill-package"
},
"code": {
"default": {
"src": "./lambda"
}
},
"skillInfrastructure": {
"type": "@ask-cli/cfn-deployer",
"userConfig": {
"awsRegion": "us-east-1",
"runtime": "nodejs20.x",
"handler": "index.handler",
"templatePath": "./infrastructure/cfn-deployer/skill-stack.yml",
"skillEvents": {
"publications": [
"AMAZON.OrderStatus.Updated"
],
"subscriptions": [
"SKILL_DISABLED",
"SKILL_PROACTIVE_SUBSCRIPTION_CHANGED"
]
},
"cfn": {
"parameters": {
"AfterShipApiKey": "",
"GoogleMapsApiKey": ""
}
}
}
}
}
}
}