Overview
This guide will show you how to create an AWS Identity Provider and IAM role to go along with it, and configure env zero to utilize OIDC. This will allow you to authenticate to AWS and get temporary credentials by accepting env zero’s OIDC token. Refer to env zero’s OIDC configuration for more informationThis guide configures a v2 OIDC credential (the recommended format), where the token audience is
sts.amazonaws.com. See Token versions for background. If you already authenticate to AWS with a v1 credential (audience set to the env zero client ID), see Migrating an existing v1 credential below.AWS Identity Provider and IAM Role
To be able to authenticate with OIDC, we will need to create an Identity Provider in your AWS account and attach an IAM role to it. We will follow this guide by AWS.Create an Identity Provider
- Login to your desired AWS account and go to Identity and Access Management (IAM)
- In the left side menu under Access management, click on Identity Providers
- Click on Add provider
- Choose the OpenID Connect option
- For Provider URL, enter https://login.app.env0.com/ and click Get thumbprint
- Under Audience, enter
sts.amazonaws.com - Add tags if you wish, then click Add provider to create the identity provider

Assign an IAM Role
- Go to the Identity Provider you created in the previous step
- In the Audiences section, select
sts.amazonaws.comthen click on the Actions button and select Assign role - Select the Create a new role option which will open the Create role wizard
- Select the Web Identity option. Under Identity provider select
login.app.env0.com/:audand under Audience selectsts.amazonaws.comthen click Next: Permissions - In the permissions phase, select the permissions you would like this role to have. Remember, these permissions will be used to deploy your IaC so make sure they match the permissions your code needs.
- Add tags if you wish
- In the Review phase, give the role a name and a description, then click Create role

Add a sub Claim
- Retrieve your organization
subidentifier using this guide - Go to the AWS IAM role you created in the previous step
- In the Trust Relationships tab, click Edit Trust Policy
- Under the Action section, add the following:
sts:AssumeRoleWithWebIdentitysts:TagSession
- UnderCondition, go to the StringEquals section of the Policy JSON add
"login.app.env0.com/:sub": "{your_organization_sub}"– Make sure you substitute{your_organization_sub}with the sub value you retrieved in the first step. It should be something like"login.app.env0.com/:sub": "auth0|632b8219674bde0224a96141" - Now click Update policy
Trust Policy
Self-Hosted Agent UsersFor EKS users, you will also need to add
"Action": "sts:AssumeRoleWithWebIdentity" to either your node role or service account role where your agent is running.Custom Claims with AWS Session Tags (Optional)
AWS OIDC identity providers support only a few out-of-the-box claims, which is a limitation when you want to control who inside env zero can access this AWS role. You can read more about available claims for AWS here. AWS lets you pass Session tags inside the JWT token, allowing you to have more control and define the right access level.organizationId- The env zero Organization IDprojectId- The env zero Project IDtemplateId- The env zero Template IDenvironmentId- The env zero Environment IDdeployerEmail- The email address of the user who created this deployment
- Go to the AWS IAM Role you created in the previous step
- In the Trust Relationships tab, click Edit Trust Policy
- Under Condition, select StringEquals for Policy JSON and always include
aws:RequestTag/organizationIdas the primary gate. You can optionally add further conditions such asaws:RequestTag/projectIdto scope access to a specific project. For example:"aws:RequestTag/projectId": ["1a433171-217e-4f58-9b4e-308d4d77902f"]. See the full example below. - Click Update policy
Trust Policy

Configure env0 OIDC Credential
Go to the organization’s credentials page and create a new deployment credential. Select AWS OIDC type and enter the following fields:Role ARN- The ARN of the role that was previously createdDuration- Configure to 1 hour for OIDC. Determines how long the token will be valid. The token is generated when deployment starts, not when the credential is being created.- Use v2 OIDC token - check this box so env zero mints a token with the
sts.amazonaws.comaudience configured above. The form shows the resultingAudience (aud)value. Leaving it unchecked produces a v1 token, which the trust policy in this guide will reject.

Override Role ARN - Deploying to a Different AWS Account
If you would like to authenticate to a different AWS account within a specific environment you can override the Role ARN configuration by using an environment variable. To do so, you will need to add an environment variable namedENV0_AWS_ROLE_ARNand set the value to the role you created in your AWS account you would like to authenticate to.

Migrating an existing v1 credential
If you already authenticate to AWS with a v1 env zero OIDC credential, your identity provider audience and role trust condition use the env zero client ID (hoMiq9PdkRh9LUvVpH4wIErWg50VSG1b) rather than sts.amazonaws.com. You can migrate to v2 without downtime by keeping both audiences on the same identity provider during the switch:
- Add the v2 audience to the identity provider. Open your existing
login.app.env0.com/identity provider in IAM and addsts.amazonaws.comas a second audience, alongside the existing client ID. One provider can serve both v1 and v2 roles. - Update the role trust condition from
"login.app.env0.com/:aud": "hoMiq9PdkRh9LUvVpH4wIErWg50VSG1b"to"login.app.env0.com/:aud": "sts.amazonaws.com", keeping the:subcondition unchanged. See the full policy below. - Enable v2 on the credential. Edit the AWS OIDC credential in env zero and check Use v2 OIDC token. The next deployment mints a token with
aud: sts.amazonaws.com. - Keep the old audience until everything else migrates. Leave the v1 client-ID audience on the identity provider until every other consumer of the shared
https://prod.env0.comaudience has moved to v2 (log forwarding and cloud cost scanning, for example, still use it). Remove it only once nothing depends on it.
Trust Policy (v2)
Next steps
- Retrieve OIDC Subject Identifier - Find the subject identifier for your OIDC token.
- OIDC for Azure - Set up OIDC for Azure as an alternative cloud provider.
- OIDC for GCP - Set up OIDC for Google Cloud Platform.