Skip to content

Commit

Permalink
fix(ui): navbar overflow with lots of clusters
Browse files Browse the repository at this point in the history
close #932
  • Loading branch information
tchiotludo authored and moremagic committed Dec 20, 2021
1 parent 07d4cfd commit f279f5b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/docs/configuration/authentifications/aws-iam-auth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# AWS MSK IAM Auth

* The libraries required for IAM authentication have already been loaded.

Configure aws-msk-iam-auth connection in AKHQ

```yaml
akhq:
connections:
docker-kafka-server:
properties:
bootstrap.servers: msk-broker:9098
security.protocol: SASL_SSL
sasl.mechanism: AWS_MSK_IAM
sasl.jaas.config: software.amazon.msk.auth.iam.IAMLoginModule required awsDebugCreds=true;
sasl.client.callback.handler.class: software.amazon.msk.auth.iam.IAMClientCallbackHandler
ssl.truststore.location: ${JAVA_HOME}/lib/security/cacerts
ssl.truststore.password: changeit
```

## References
https://docs.aws.amazon.com/msk/latest/developerguide/iam-access-control.html
https://github.com/aws/aws-msk-iam-auth/blob/main/README.md

0 comments on commit f279f5b

Please sign in to comment.