Docs Connect Guides Cloud Credentials Amazon Web Services Amazon Web Services There are many components within Redpanda Connect which utilize AWS services. You will find that each of these components contains a configuration section under the field credentials, of the format: credentials: profile: "" id: "" secret: "" token: "" role: "" role_external_id: "" This section contains many fields and it isn’t immediately clear which of them are compulsory and which aren’t. This document aims to make it clear what each field is responsible for and how it might be used. Credentials The first thing to make clear is that all of these fields are optional. When all fields are left blank Redpanda Connect will attempt to load credentials from a shared credentials file (~/.aws/credentials). The profile loaded will be default unless the AWS_PROFILE environment variable is set. Explicit credentials By explicitly setting the credentials you are using at the component level it’s possible to connect to components using different accounts within the same Redpanda Connect process. Select a profile If you are using your shared credentials file but wish to explicitly select a profile set the profile field: credentials: profile: foo Manual If you are using long term credentials for your account you only need to set the fields id and secret: credentials: id: foo # aws_access_key_id secret: bar # aws_secret_access_key If you are using short term credentials then you will also need to set the field token: credentials: id: foo # aws_access_key_id secret: bar # aws_secret_access_key token: baz # aws_session_token Assume a role It’s also possible to configure Redpanda Connect to assume a role using your credentials by setting the field role to your target role ARN. credentials: role: fooarn # Role ARN This does NOT require explicit credentials, but it’s possible to use both. If you need to assume a role owned by another organization they might require you to provide an external ID, in which case place it in the field role_external_id: credentials: role: fooarn # Role ARN role_external_id: bar_id Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution Cloud Credentials Google Cloud Platform