Amazon Web Services Connection¶
The Amazon Web Services connection type enables the AWS Integrations.
Authenticating to AWS¶
Authentication may be performed using any of the boto3 options. Alternatively, one can pass credentials in as a Connection initialisation parameter.
To use IAM instance profile, create an “empty” connection (i.e. one with no Login or Password specified).
Default Connection IDs¶
The default connection ID is aws_default
.
Configuring the Connection¶
- Login (optional)
Specify the AWS access key ID.
- Password (optional)
Specify the AWS secret access key.
- Extra (optional)
Specify the extra parameters (as json dictionary) that can be used in AWS connection. The following parameters are supported:
aws_account_id: AWS account ID for the connection
aws_iam_role: AWS IAM role for the connection
external_id: AWS external ID for the connection
host: Endpoint URL for the connection
region_name: AWS region for the connection
role_arn: AWS role ARN for the connection
Example “extras” field:
{ "aws_iam_role": "aws_iam_role_name", "region_name": "ap-southeast-2" }