forked from antonbabenko/modules.tf-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqs.json
More file actions
78 lines (78 loc) · 2.78 KB
/
sqs.json
File metadata and controls
78 lines (78 loc) · 2.78 KB
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
68
69
70
71
72
73
74
75
76
77
78
{
"content_based_deduplication": {
"default": false,
"description": "Enables content-based deduplication for FIFO queues",
"type": "bool"
},
"create": {
"default": true,
"description": "Whether to create SQS queue",
"type": "bool"
},
"delay_seconds": {
"default": 0,
"description": "The time in seconds that the delivery of all messages in the queue will be delayed. An integer from 0 to 900 (15 minutes)",
"type": "number"
},
"fifo_queue": {
"default": false,
"description": "Boolean designating a FIFO queue",
"type": "bool",
"cloudcraft_name": "fifoQueue"
},
"kms_data_key_reuse_period_seconds": {
"default": 300,
"description": "The length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. An integer representing seconds, between 60 seconds (1 minute) and 86,400 seconds (24 hours)",
"type": "number"
},
"kms_master_key_id": {
"default": "null",
"description": "The ID of an AWS-managed customer master key (CMK) for Amazon SQS or a custom CMK",
"type": "string"
},
"max_message_size": {
"default": 262144,
"description": "The limit of how many bytes a message can contain before Amazon SQS rejects it. An integer from 1024 bytes (1 KiB) up to 262144 bytes (256 KiB)",
"type": "number"
},
"message_retention_seconds": {
"default": 345600,
"description": "The number of seconds Amazon SQS retains a message. Integer representing seconds, from 60 (1 minute) to 1209600 (14 days)",
"type": "number"
},
"name": {
"default": "null",
"description": "This is the human-readable name of the queue. If omitted, Terraform will assign a random name.",
"type": "string"
},
"name_prefix": {
"default": "null",
"description": "A unique name beginning with the specified prefix.",
"type": "string"
},
"policy": {
"default": "",
"description": "The JSON policy for the SQS queue",
"type": "string"
},
"receive_wait_time_seconds": {
"default": 0,
"description": "The time for which a ReceiveMessage call will wait for a message to arrive (long polling) before returning. An integer from 0 to 20 (seconds)",
"type": "number"
},
"redrive_policy": {
"default": "",
"description": "The JSON policy to set up the Dead Letter Queue, see AWS docs. Note: when specifying maxReceiveCount, you must specify it as an integer (5), and not a string (\"5\")",
"type": "string"
},
"tags": {
"default": {},
"description": "A mapping of tags to assign to all resources",
"type": "map(string)"
},
"visibility_timeout_seconds": {
"default": 30,
"description": "The visibility timeout for the queue. An integer from 0 to 43200 (12 hours)",
"type": "number"
}
}