This variant allows to use PyPi packages from AWS CodeArtifact. The variant follow the recommendation [Authenticate for using client libraries](https://docs.aws.amazon.com/codeartifact/latest/ug/python-configure.html)
It authenticates with AWS CodeArtifact, retrieves and sets the following environment variable:
-`CODEARTIFACT_AUTH_TOKEN` - the AWS CodeArtifact authentication token
-`CODEARTIFACT_REPOSITORY_ENDPOINT` - the AWS CodeArtifact repository endpoint
-`CODEARTIFACT_URL` - Formatted URL for the AWS CodeArtifact repository
Most importantly, the variant sets the `pip global.index-url` to the CodeArtifact url.
The variant supports two authentication methods:
1.[federated authentication using OpenID Connect](https://docs.gitlab.com/ee/ci/cloud_services/aws/)(**recommended method**),
2. or basic authentication with AWS access key ID & secret access key.
:warning: when using this variant, you must have created the CodeArtifact repository.
#### Configuration
The variant *requires* the additional configuration parameters:
| Input / Variable | Description | Default value |
| `TBC_AWS_PROVIDER_IMAGE` | The [AWS Auth Provider](https://gitlab.com/to-be-continuous/tools/aws-auth-provider) image to use (can be overridden) | `registry.gitlab.com/to-be-continuous/tools/aws-auth-provider:latest` |
| `aws-region` / `AWS_REGION` | Default region (where the Codeartifact repository is located) | _none_ |
| `aws-codeartifact-domain` / `AWS_CODEARTIFACT_DOMAIN` | The CodeArtifact domain name | _none_ |
| `aws-codeartifact-domain-owner` / `AWS_CODEARTIFACT_DOMAIN_OWNER` | The CodeArtifact domain owner account ID | _none_ |
| `aws-codeartifact-repository` / `AWS_CODEARTIFACT_REPOSITORY` | The CodeArtifact repository name | _none_ |
##### OIDC authentication config
This is the recommended authentication method. In order to use it, first carefuly follow [GitLab's documentation](https://docs.gitlab.com/ee/ci/cloud_services/aws/),
then set the required configuration.
| Input / Variable | Description | Default value |
"description":"Default Workload Identity Provider associated with GitLab to [authenticate with OpenID Connect](https://docs.gitlab.com/ee/ci/cloud_services/google_cloud/)"
"description":"Default region (where the codeartifact repository is located)"
},
{
"name":"AWS_OIDC_AUD",
"description":"The `aud` claim for the JWT token _(only required for [OIDC authentication](https://docs.gitlab.com/ee/ci/cloud_services/aws/))_",
"default":"$CI_SERVER_URL",
"advanced":true
},
{
"name":"AWS_OIDC_ROLE_ARN",
"description":"Default IAM Role ARN associated with GitLab _(only required for [OIDC authentication](https://docs.gitlab.com/ee/ci/cloud_services/aws/))_"
},
{
"name":"AWS_ACCESS_KEY_ID",
"description":"Default access key ID (only required for basic authentication)",
"secret":true,
"advanced":true
},
{
"name":"AWS_SECRET_ACCESS_KEY",
"description":"Default secret access key (only required for basic authentication)",