logstash-output-sqs 5.0.2 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3134e9ec77534b717e878d3bf32e98330d607103f910994a0bf0918130fadcb8
4
- data.tar.gz: e2742674de4eca6a8c0ed756070ddcd9369264378aed0dcd871824c333beb437
3
+ metadata.gz: f27fec3a7c9b2d9393c282a333fb68da478a64920d5b44af6454acedb926d079
4
+ data.tar.gz: f31116ddc9974dd757039a5d752d85f6633fe62645caa13f139c90cc32ea2ba7
5
5
  SHA512:
6
- metadata.gz: 3ff9f653c28315bf0f721bf8ba6d01c153eb47af6b584b858cef9e5e3ba53306fd9bbd62348400642ba922f23595fd3af255fe20c34d09a85d36f33ef607e97e
7
- data.tar.gz: 9e120a54fbb9725e24d45d24299e380fe11ad9df1684ec8c98b82c6682adff1b91e2ad5c916485fc9ab4cbf774efdcb965ca9240e9f519a2a43de5d883b87927
6
+ metadata.gz: 3ba60189eb721549c881502aefba5ddb76187d11ff285f38dba01b4fa664e96a25e11f3f922bff931fbcf1cb4f02370c7fdbf7b6f2e7d137738114e833add44a
7
+ data.tar.gz: a9051d9e331fc3647c666e8a80159858aa4cf86b299cd068b237ee3d1e9390da008f214602f52c2d9f137f6c75d3096aa38725815e24cee9da371b546f97f7a7
@@ -1,3 +1,6 @@
1
+ ## 5.1.0
2
+ - Add documentation for endpoint, role_arn and role_session_name #29
3
+
1
4
  ## 5.0.2
2
5
  - Update gemspec summary
3
6
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012-2018 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
@@ -85,10 +85,13 @@ This plugin supports the following configuration options plus the <<plugins-{typ
85
85
  | <<plugins-{type}s-{plugin}-access_key_id>> |<<string,string>>|No
86
86
  | <<plugins-{type}s-{plugin}-aws_credentials_file>> |<<string,string>>|No
87
87
  | <<plugins-{type}s-{plugin}-batch_events>> |<<number,number>>|No
88
+ | <<plugins-{type}s-{plugin}-endpoint>> |<<string,string>>|No
88
89
  | <<plugins-{type}s-{plugin}-message_max_size>> |<<bytes,bytes>>|No
89
90
  | <<plugins-{type}s-{plugin}-proxy_uri>> |<<string,string>>|No
90
91
  | <<plugins-{type}s-{plugin}-queue>> |<<string,string>>|Yes
91
- | <<plugins-{type}s-{plugin}-region>> |<<string,string>>, one of `["us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-central-1", "eu-west-1", "eu-west-2", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "sa-east-1", "us-gov-west-1", "cn-north-1", "ap-south-1", "ca-central-1"]`|No
92
+ | <<plugins-{type}s-{plugin}-region>> |<<string,string>>|No
93
+ | <<plugins-{type}s-{plugin}-role_arn>> |<<string,string>>|No
94
+ | <<plugins-{type}s-{plugin}-role_session_name>> |<<string,string>>|No
92
95
  | <<plugins-{type}s-{plugin}-secret_access_key>> |<<string,string>>|No
93
96
  | <<plugins-{type}s-{plugin}-session_token>> |<<string,string>>|No
94
97
  |=======================================================================
@@ -139,6 +142,16 @@ file should look like this:
139
142
  The number of events to be sent in each batch. Set this to `1` to disable
140
143
  the batch sending of messages.
141
144
 
145
+ [id="plugins-{type}s-{plugin}-endpoint"]
146
+ ===== `endpoint`
147
+
148
+ * Value type is <<string,string>>
149
+ * There is no default value for this setting.
150
+
151
+ The endpoint to connect to. By default it is constructed using the value of `region`.
152
+ This is useful when connecting to S3 compatible services, but beware that these aren't
153
+ guaranteed to work correctly with the AWS SDK.
154
+
142
155
  [id="plugins-{type}s-{plugin}-message_max_size"]
143
156
  ===== `message_max_size`
144
157
 
@@ -170,11 +183,29 @@ queue, not the URL or ARN.
170
183
  [id="plugins-{type}s-{plugin}-region"]
171
184
  ===== `region`
172
185
 
173
- * Value can be any of: `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`, `eu-central-1`, `eu-west-1`, `eu-west-2`, `ap-southeast-1`, `ap-southeast-2`, `ap-northeast-1`, `ap-northeast-2`, `sa-east-1`, `us-gov-west-1`, `cn-north-1`, `ap-south-1`, `ca-central-1`
186
+ * Value type is <<string,string>>
174
187
  * Default value is `"us-east-1"`
175
188
 
176
189
  The AWS Region
177
190
 
191
+ [id="plugins-{type}s-{plugin}-role_arn"]
192
+ ===== `role_arn`
193
+
194
+ * Value type is <<string,string>>
195
+ * There is no default value for this setting.
196
+
197
+ The AWS IAM Role to assume, if any.
198
+ This is used to generate temporary credentials, typically for cross-account access.
199
+ See the https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html[AssumeRole API documentation] for more information.
200
+
201
+ [id="plugins-{type}s-{plugin}-role_session_name"]
202
+ ===== `role_session_name`
203
+
204
+ * Value type is <<string,string>>
205
+ * Default value is `"logstash"`
206
+
207
+ Session name to use when assuming an IAM role.
208
+
178
209
  [id="plugins-{type}s-{plugin}-secret_access_key"]
179
210
  ===== `secret_access_key`
180
211
 
@@ -194,4 +225,4 @@ The AWS Session token for temporary credential
194
225
 
195
226
 
196
227
  [id="plugins-{type}s-{plugin}-common-options"]
197
- include::{include_path}/{type}.asciidoc[]
228
+ include::{include_path}/{type}.asciidoc[]
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-sqs'
4
- s.version = '5.0.2'
4
+ s.version = '5.1.0'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Pushes events to an Amazon Web Services Simple Queue Service queue"
7
7
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
21
21
 
22
22
  # Gem dependencies
23
23
  s.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99'
24
- s.add_runtime_dependency 'logstash-mixin-aws', '>= 1.0.0'
24
+ s.add_runtime_dependency 'logstash-mixin-aws', '>= 4.3.0'
25
25
 
26
26
  s.add_development_dependency 'logstash-codec-json'
27
27
  s.add_development_dependency 'logstash-devutils'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-13 00:00:00.000000000 Z
11
+ date: 2018-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -35,7 +35,7 @@ dependencies:
35
35
  requirements:
36
36
  - - ">="
37
37
  - !ruby/object:Gem::Version
38
- version: 1.0.0
38
+ version: 4.3.0
39
39
  name: logstash-mixin-aws
40
40
  prerelease: false
41
41
  type: :runtime
@@ -43,7 +43,7 @@ dependencies:
43
43
  requirements:
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 1.0.0
46
+ version: 4.3.0
47
47
  - !ruby/object:Gem::Dependency
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
116
  version: '0'
117
117
  requirements: []
118
118
  rubyforge_project:
119
- rubygems_version: 2.6.11
119
+ rubygems_version: 2.6.13
120
120
  signing_key:
121
121
  specification_version: 4
122
122
  summary: Pushes events to an Amazon Web Services Simple Queue Service queue