forked from StackStorm-Exchange/stackstorm-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.yaml
executable file
·67 lines (67 loc) · 1.98 KB
/
config.schema.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
aws_access_key_id:
description: "AWS access key to use."
type: "string"
secret: true
required: true
aws_secret_access_key:
description: "AWS access secret to use."
type: "string"
secret: true
required: true
region:
description: "AWS region to use."
type: "string"
required: true
default: 'us-east-1'
st2_user_data:
description: >
Raw content or filepath with EC2 user data: automated configuration tasks or scripts executed after the instance starts.
Used as default for all 'ec2_run_instances' invocations if no custom user-data provided via action parameters.
type: "string"
debug:
type: "boolean"
description: "Set to True to log every boto method / function invocation"
default: false
actions:
type: object
properties:
roles:
type: "array"
description: "ARNs of the roles which allow effecting actions on resources on that account"
items:
type: "string"
service_notifications_sensor:
type: object
properties:
host:
description: "Listen host for the HTTP interface from Amazon SNS"
type: "string"
default: "localhost"
port:
description: "Listen path for the HTTP interface from Amazon SNS"
type: "integer"
default: 12345
path:
description: "Path where the events need to be sent from Amazon SNS"
type: "string"
sqs_sensor:
type: object
properties:
input_queues:
description: "Names or URLs of queues to fetch messages from Amazon SQS"
type: "array"
items:
type: "string"
roles:
type: "array"
description: "ARNs of the roles which allow queues to be fetched for messages"
items:
type: "string"
sqs_other:
type: object
properties:
max_number_of_messages:
description: "The maximum number of messages that Amazon SQS returns"
type: "integer"
default: 1