Amazon Web Services (AWS)ยป
Hint
This feature is only available to paid Spacelift accounts. Please check out our pricing page for more information.
Warning
While the Terraform AWS provider supports authenticating with OIDC, the AWS S3 state backend does not support it yet.
If you need to use the AWS S3 state backend, you can use the following workaround:
- Add the following command as a
before_init
hook (make sure to replace<ROLE ARN>
with your IAM role ARN)
1 |
|
- Comment out the
role_arn
argument in thebackend
block - Comment out the
assume_role_with_web_identity
section in the AWS provider block
Alternatively, you can use the dedicated AWS Cloud Integration that uses AWS STS to obtain temporary credentials.
Configuring Spacelift as an Identity Providerยป
In order to be able to do that, you will need to set up Spacelift as a valid identity provider for your AWS account. This is done by creating an OpenID Connect identity provider . You can do it declaratively using any of the IaC providers, programmatically using the AWS CLI or simply use the console. For illustrative purposes, we will use the console:
- Go to the AWS console and select the IAM service;
- Click on the "Identity providers" link in the left-hand menu;
- Click on the "Add provider" button in the top bar
- Select "OpenID Connect" as the provider type
- Make sure to get the host thumbprint by clicking the "Get thumbprint" button. This is required by AWS and protects you from a certain class of MitM attacks.
Hint
You will need to add iss to Provider URL and you will need to add aud to Audience.
You will need to replace demo.app.spacelift.io
with the hostname of your Spacelift account.
Once created, the identity provider will be listed in the "Identity providers" table. You can click on the provider name to see the details. From here, you will also be able to assign an IAM role to this new identity provider:
A dialog will pop up, asking you to select whether you want to create a new role or use an existing one. Let's create a brand new role. The most important thing for us is to select the right trusted entity - the new Spacelift OIDC provider. Make sure you select the audience from the dropdown - there should be just one option to choose from:
The rest of the process is the same as for any other role creation. You will be asked to select the policies that you want to attach to the role. You can also add tags and a description. Once you're done, click the "Create role" button.
If you go to your new role's details page, in the Trust relationships section you will notice that it is now associated with the Spacelift OIDC provider:
This trust relationship is very relaxed and will allow any stack or module in the demo
Spacelift account to assume this role. If you want to be more restrictive, you will want to add more conditions. For example, we can restrict the role to be only assumable by stacks in the production
space by adding the following condition:
1 2 3 |
|
Hint
You will need to replace demo.app.spacelift.io
with the hostname of your Spacelift account.
You can also restrict the role to be assumable only by a specific stack by matching on the stack ID:
1 2 3 |
|
You can mix and match these to get the exact constraints you need. It is not the purpose of this guide to go into the intricacies of AWS IAM conditions - you can learn all about these in the official doc. One important thing to remember though is that AWS does not seem to support custom claims so you will need to use the standard ones to do the matching - primarily sub
, as shown above.
Configuring the Terraform Providerยป
Once the Spacelift-AWS OIDC integration is set up, the provider can be configured without the need for any static credentials. The aws_role_arn
variable should be set to the ARN of the role that you want to assume:
1 2 3 4 5 6 |
|