logstash-mixin-aws 2.0.4 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/Gemfile +3 -1
- data/LICENSE +1 -1
- data/README.md +12 -2
- data/lib/logstash/plugin_mixins/aws_config/generic.rb +6 -2
- data/logstash-mixin-aws.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e94a29678cb7233155bc36a6dd35417cfdd72cc
|
|
4
|
+
data.tar.gz: 02cd1e2e28e703948a3fb5181e2bb82af659607c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b9ad5855909154fa53d182daeeafa20329dbccc98b4071392e65d2bdc97f5f9c8aceffc1f3ecfc39c92ef9deb06ed042a599145df9c5f67573f31604da3534b
|
|
7
|
+
data.tar.gz: 8bc6b015ce13388aa403adffc4547467225d925f2f95e5de7e3312db84101a572dcb9c4aafb39483f4f80136612e7de3466b36e54ff3a068b29a47bcc2869a02
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## 4.0.0
|
|
2
|
+
- Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
|
|
1
3
|
# 2.0.4
|
|
2
4
|
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
|
3
5
|
# 2.0.3
|
data/Gemfile
CHANGED
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Logstash Plugin
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/logstash-plugins/logstash-mixin-aws)
|
|
4
4
|
|
|
5
5
|
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
|
6
6
|
|
|
@@ -55,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
|
|
|
55
55
|
```
|
|
56
56
|
- Install plugin
|
|
57
57
|
```sh
|
|
58
|
+
# Logstash 2.3 and higher
|
|
59
|
+
bin/logstash-plugin install --no-verify
|
|
60
|
+
|
|
61
|
+
# Prior to Logstash 2.3
|
|
58
62
|
bin/plugin install --no-verify
|
|
63
|
+
|
|
59
64
|
```
|
|
60
65
|
- Run Logstash with your plugin
|
|
61
66
|
```sh
|
|
@@ -73,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
|
|
|
73
78
|
```
|
|
74
79
|
- Install the plugin from the Logstash home
|
|
75
80
|
```sh
|
|
76
|
-
|
|
81
|
+
# Logstash 2.3 and higher
|
|
82
|
+
bin/logstash-plugin install --no-verify
|
|
83
|
+
|
|
84
|
+
# Prior to Logstash 2.3
|
|
85
|
+
bin/plugin install --no-verify
|
|
86
|
+
|
|
77
87
|
```
|
|
78
88
|
- Start Logstash and proceed to test the plugin
|
|
79
89
|
|
|
@@ -8,7 +8,8 @@ module LogStash::PluginMixins::AwsConfig::Generic
|
|
|
8
8
|
# The AWS Region
|
|
9
9
|
config :region, :validate => LogStash::PluginMixins::AwsConfig::REGIONS_ENDPOINT, :default => LogStash::PluginMixins::AwsConfig::US_EAST_1
|
|
10
10
|
|
|
11
|
-
# This plugin uses the AWS SDK and supports several ways to get credentials, which will be tried in this order
|
|
11
|
+
# This plugin uses the AWS SDK and supports several ways to get credentials, which will be tried in this order:
|
|
12
|
+
#
|
|
12
13
|
# 1. Static configuration, using `access_key_id` and `secret_access_key` params in logstash plugin config
|
|
13
14
|
# 2. External credentials file specified by `aws_credentials_file`
|
|
14
15
|
# 3. Environment variables `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`
|
|
@@ -19,7 +20,7 @@ module LogStash::PluginMixins::AwsConfig::Generic
|
|
|
19
20
|
# The AWS Secret Access Key
|
|
20
21
|
config :secret_access_key, :validate => :string
|
|
21
22
|
|
|
22
|
-
# The AWS Session token for
|
|
23
|
+
# The AWS Session token for temporary credential
|
|
23
24
|
config :session_token, :validate => :string
|
|
24
25
|
|
|
25
26
|
# URI to proxy server if required
|
|
@@ -30,8 +31,11 @@ module LogStash::PluginMixins::AwsConfig::Generic
|
|
|
30
31
|
# `secret_access_key` aren't set. The contents of the
|
|
31
32
|
# file should look like this:
|
|
32
33
|
#
|
|
34
|
+
# [source,ruby]
|
|
35
|
+
# ----------------------------------
|
|
33
36
|
# :access_key_id: "12345"
|
|
34
37
|
# :secret_access_key: "54321"
|
|
38
|
+
# ----------------------------------
|
|
35
39
|
#
|
|
36
40
|
config :aws_credentials_file, :validate => :string
|
|
37
41
|
end
|
data/logstash-mixin-aws.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-mixin-aws'
|
|
3
|
-
s.version = '
|
|
3
|
+
s.version = '4.0.0'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "AWS mixins to provide a unified interface for Amazon Webservice"
|
|
6
|
-
s.description = "This gem is a
|
|
6
|
+
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"
|
|
7
7
|
s.authors = ["Elastic"]
|
|
8
8
|
s.email = 'info@elastic.co'
|
|
9
9
|
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-mixin-aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description: This gem is a
|
|
83
|
+
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
|
|
84
84
|
email: info@elastic.co
|
|
85
85
|
executables: []
|
|
86
86
|
extensions: []
|