Skip to content

Commit cc3bff8

Browse files
committed
Version 0.3.6 of Fluent Plugin for Amazon Kinesis
1 parent fee1914 commit cc3bff8

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.3.6
4+
5+
- **Cross account access support**: Added support for cross account access for Amazon Kinesis stream. With this update, you can put reocrds to streams those are owned by other AWS account. This feature is achieved by [AssumeRole](http://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html).
6+
37
## 0.3.5
48

59
- **1MB record size limit**: Increased record size limit from 50KB to 1MB due to [Amazon Kinesis improvement.](http://aws.amazon.com/jp/about-aws/whats-new/2015/06/amazon-kinesis-announces-put-pricing-change-1mb-record-support-and-the-kinesis-producer-library/)

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,18 @@ AWS access key id.
100100

101101
AWS secret key.
102102

103+
### role_arn
104+
105+
IAM Role to be assumed with [AssumeRole](http://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html).
106+
Use this option for cross account access.
107+
108+
### external_id
109+
110+
A unique identifier that is used by third parties when
111+
[assuming roles](http://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html) in their customers' accounts.
112+
Use this option with `role_arn` for third party cross account access.
113+
For detail, please see [How to Use an External ID When Granting Access to Your AWS Resources to a Third Party](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html).
114+
103115
### region
104116

105117
AWS region of your stream.

lib/fluent/plugin/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# language governing permissions and limitations under the License.
1313

1414
module FluentPluginKinesis
15-
VERSION = '0.3.5'
15+
VERSION = '0.3.6'
1616
end

0 commit comments

Comments
 (0)