Skip to content

Commit

Permalink
Authentication for AWS Fargate
Browse files Browse the repository at this point in the history
Added AWS access section which is required to work with AWS Fargate.
  • Loading branch information
joaolcorreia authored Dec 11, 2024
1 parent 50a5dab commit eec303c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/config.kafka.extended.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,16 @@ collector {
# "enabled" which should be set to "stdout".
enabled = kafka

# The following are used to authenticate for the Amazon Fargate
# If both are set to 'default', the default provider chain is used
# (see http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/auth/DefaultAWSCredentialsProviderChain.html)
# If both are set to 'iam', use AWS IAM Roles to provision credentials.
# If both are set to 'env', use environment variables AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY
aws {
accessKey = iam
secretKey = iam
}

# Or Kafka
brokers = "localhost:9092,another.host:9092"
## Number of retries to perform before giving up on sending a record
Expand Down

0 comments on commit eec303c

Please sign in to comment.