Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add explanation for role_arn setting #14

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 7.0.1
- [Doc] explain role_arn setting [#14](https://github.com/logstash-plugins/logstash-integration-aws/pull/14)

## 7.0.0
- bump integration to upper bound of all underlying plugins versions (biggest is sqs output 6.x)
- this is necessary to facilitate versioning continuity between older standalone plugins and plugins within the integration
Expand Down
3 changes: 2 additions & 1 deletion docs/input-sqs.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,15 @@ The AWS Region
The AWS IAM Role to assume, if any.
This is used to generate temporary credentials, typically for cross-account access.
See the https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html[AssumeRole API documentation] for more information.
To use this feature, set `role_session_name`, remove `access_key_id` and `secret_access_key`, and use the aws credentials to setup the aws default profile for the primary account in the server.

[id="plugins-{type}s-{plugin}-role_session_name"]
===== `role_session_name`

* Value type is <<string,string>>
* Default value is `"logstash"`

Session name to use when assuming an IAM role.
Session name to use when assuming an IAM role. This is required for `role_arn`.

[id="plugins-{type}s-{plugin}-secret_access_key"]
===== `secret_access_key`
Expand Down
2 changes: 1 addition & 1 deletion logstash-integration-aws.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "logstash-integration-aws"
s.version = "7.0.0"
s.version = "7.0.1"
s.licenses = ["Apache-2.0"]
s.summary = "Collection of Logstash plugins that integrate with AWS"
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"
Expand Down