Calling AWS Services from Renovate¶
When one of Renovate's inbuilt datasources interacts with AWS services, Renovate uses the AWS SDK for JavaScript.
This allows you to provide credentials and configuration to it, as if you were interacting with other tools, like the aws CLI.
For example:
- Set the region via the
AWS_REGIONenvironment variable or your~/.aws/configfile - Provide credentials via the
AWS_ACCESS_KEY_IDandAWS_SECRET_ACCESS_KEYenvironment variables or your~/.aws/credentialsfile - Select the profile to use via
AWS_PROFILEenvironment variable
Tip
Read the AWS Developer Guide - Configuring the SDK for JavaScript for more information on these configuration options.