Amazon Web Services (AWS)»
Let's Explain»
The AWS integration allows either Spacelift runs or tasks to automatically assume an IAM role in your AWS account, and in the process, generate a set of temporary credentials. These credentials are then exposed as computed environment variables during the run/task that takes place on the particular Spacelift stack that the integration is attached to.
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
AWS_SECURITY_TOKEN
AWS_SESSION_TOKEN
This is enough for both the AWS Terraform provider and/or Amazon S3 state backend to generate a fully authenticated AWS session without further configuration. However, you will likely need to select one of the available regions with the former.
Usage»
To utilize the AWS integration, you need to set up at least one cloud integration, and then attach that integration to any stacks that need it. Please follow the Setup Guide for more information on this process.
Trust Policy»
Warning
If you get the error you need to configure trust relationship section in your AWS account
when attaching a cloud integration to a stack, it may be caused by not having the STS (Security Token Service) enabled. Please make sure this service is enabled for both the eu-west-1 and eu-central-1 (used for disaster recovery failover) regions in your account.
When setting up a Spacelift AWS Cloud Integration you need to specify the ARN of an IAM Role to use. The Trust Policy for this role must be configured to allow Spacelift to assume the role and generate temporary credentials.
When completing the role assumption, Spacelift will pass extra information in the ExternalId
attribute, allowing you to optionally add additional layers of security to your role.
External ID Format: <spacelift-account-name>@<integration-id>@<stack-slug>@<read|write>
<spacelift-account-name>
: the name of the Spacelift account that initiated the role assumption.<integration-id>
: the ID of the AWS Cloud Integration that initiated the role assumption.<stack-slug>
: the slug of the stack that the AWS Cloud Integration is attached to, that initiated the role assumption.<read|write>
: set to eitherread
orwrite
based upon the event occurring that has initiated the role assumption. The Planning phase utilizesread
while the Applying phase utilizeswrite
.
Setup Guide»
Prerequisites:
- The ability to create IAM Roles in your AWS account.
- Admin access to your Spacelift account.
Setup a Role in AWS»
Before creating the Spacelift AWS integration, you need to have an AWS IAM Role within your AWS account that the cloud integration will use.
Within your AWS account, navigate to AWS IAM and click the Create role button.
Hint
To allow this integration to access multiple AWS accounts, you can extend this role to have cross-account permissions to the target accounts. See AWS documentation for more details.
Configure Trust Policy»
Next, we want to configure the Trust Policy for the role to allow Spacelift to assume the role.
Here's an example trust policy statement you can use, that allows any stack within your Spacelift account to use this IAM Role:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
Info
Be sure to replace yourSpaceliftAccountName in the example above with your actual Spacelift account name.
Optionally Configure Further Constraints on the Trust Policy»
Info
By default, Spacelift passes the ExternalId
value in this format: <spacelift-account-name>@<integration-id>@<stack-slug>@<read|write>
Knowing the format of the External ID passed by Spacelift, you can further secure your IAM Role trust policies if you desire a deeper level of granular security.
For example, you may wish to lock down an IAM Role so that it can only be used by a specific stack. The following example shows how to lock down an IAM Role so that it can only be assumed by the stack stack-a
in a Spacelift account called example
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
Configure Role Permissions»
Next, you need to attach at least one IAM Policy to your IAM Role to provide it with sufficient permissions to deploy any resources that your IaC code defines.
Info
For Terraform users that are managing their own state file, don't forget to give your role sufficient permissions to access your state (Terraform documents the permissions required for S3-managed state here, and for DynamoDB state locking here).
Create IAM Role»
Once you have your IAM Role's trust policy and IAM Policies configured, you can finish creating the role. Take a note of the IAM Role ARN, as you'll need this when setting up the integration in Spacelift in the next section.
Navigate to Cloud Integrations»
Now that you have an IAM Role created, navigate to the Cloud Integration page from the Spacelift navigation sidebar.
Create an Integration»
Click the add your first integration button to begin the creation of your first integration.
When creating an integration, you will immediately notice that you need to specify two required fields: Name and Role ARN. Give the integration a name of your choosing, and paste in the ARN of the IAM Role that you just created.
If you enable the assume role on worker option, the role assumption will be performed on your private worker rather than at Spacelift's end. When role assumption on the worker is enabled, you can also optionally specify a custom External ID to use during role assumption.
Info
When creating your role in AWS, you need to ensure the role has a trust policy that allows Spacelift to assume the role to generate temporary credentials for runs. Assuming you are following this guide, you should have configured this in the previous section.
Using the Integration»
Now that the integration has been created, you need to attach it to one or more stacks. To do this, navigate to a stack that you want to attach your integration to:
Next, go to the stack's settings:
Choose the integrations tab:
Select the AWS option from the drop down, choose your integration, and select whether it should be used for read, write or both read and write phases:
Info
Once you have chosen your integration and specified whether it will be used for read or write phases, an example trust relationship statement will be displayed. This shows an example of how to configure your role for use by this exact stack, and based on whether the integration is being attached for read or write phases. This policy statement is provided for convenience only, and you can safely ignore it if you have already configured your trust relationship for your role.
Read vs Write»
You can attach an AWS integration as read, write or read-write, and you can attach at most two integrations to any single stack. Read indicates that this integration will be used during read phases of runs (for example, plans), and Write indicates that this integration will be used during write phases of runs (for example, applies).
Role Assumption Verification»
If the Cloud Integration has the "Assume Role on Worker" setting disabled, Spacelift will verify the role assumption as soon as you click the attach button. If role assumption succeeds, it will try to assume the role without the unique external ID, and this time it expects to fail. If Spacelift fails the latter check, we consider the integration is safely configured.
Success
This somewhat counterintuitive extra check is to prevent against malicious takeover of your account by someone who happens to know your AWS account ID, which isn't all that secret, really. The security vulnerability we're addressing here is known as the confused deputy problem.
Programmatic Setup»
You can also use the Spacelift Terraform provider in order to create an AWS Cloud integration from an administrative stack, including the trust relationship. Note that in order to do that, your administrative stack will require AWS credentials itself, and ones powerful enough to be able to deal with IAM.
Here's a little example of what that might look like to create a Cloud Integration programmatically:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
Info
Please always refer to the provider documentation for the most up-to-date documentation.
Attaching a Role to Multiple Stacks»
The previous example explained how to use the spacelift_aws_integration_attachment_external_id
data-source to generate the assume role policy for using the integration with a single stack, but what if you want to attach the integration to multiple stacks? The simplest option would be to create multiple instances of the data-source - one for each stack - but you can also use a Terraform for_each
condition to reduce the amount of code required:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
This will generate a trust relationship that looks something like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
Is it safe?»
Assuming roles and generating credentials on the private worker is perfectly safe. Those credentials are never leaked to us in any shape or form. Hence, the rest of this section discusses the trust relationship established between the Spacelift account and your AWS account for the purpose of dynamically generating short-lived credentials. So, how safe is that?
Probably safer than storing static credentials in your stack environment. Unlike user keys that you'd normally have to use, role credentials are dynamically created and short-lived. We use the default expiration which is 1 hour, and do not store them anywhere. Leaking them accidentally through the logs is not an option either because we mask AWS credentials.
The most tangible safety feature of the AWS integration is the breadcrumb trail it leaves in CloudTrail. Every resource change can be mapped to an individual Terraform run or task whose ID automatically becomes the username as the sts:AssumeRole
API call with that ID as RoleSessionName
. In conjunction with AWS tools like Config, it can be a very powerful compliance tool.
Let's have a look at a CloudTrail event showing an IAM role being created by what seems to be a Spacelift run:
01DSJ63P40BAZY4VW8BXXG7M4K
is indeed a run ID we can then trace back even further:
Roles assuming other roles»
OK, we get it. Using everyone's favorite Inception meme:
Indeed, the AWS Terraform provider allows you to assume an IAM role during setup, effectively doing the same thing over again. This approach is especially useful if you want to control resources in multiple AWS accounts from a single Spacelift stack. This is totally fine - in IAM, roles can assume other roles, though what you need to do on your end is set up the trust relationship between the role you have Spacelift assume and the role for each provider instance to assume. But let's face it - at this level of sophistication, you sure know what you're doing.
One bit you might not want to miss though, is the guaranteed ability to map the change to a particular run or task that we described in the previous section. One way of fixing that would be to use the TF_VAR_spacelift_run_id
computed environment variable available to each Spacelift workflow. Conveniently, it's already a Terraform variable, so a setup like this should do the trick:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
Migrating from "Legacy" integrations»
Originally, when our AWS integration was created it did not support account-level integrations. Instead, each integration was created separately on a per-stack basis. This section provides instructions on how to migrate to the new account-level integrations, with different sets of instructions provided depending on whether you manage your integrations via the UI, or via the Spacelift Terraform Provider.
Via the UI»
Once the new Cloud Integrations UI is enabled for your account, you will still be able to view your legacy integrations in the âIntegrationsâ section of your stacks, but it will look slightly different:
The first thing to do is to copy your Role ARN, then head over to the Cloud Integrations section. Once there, click on the âAdd your first integrationâ button to get started:
Give your role a name, and paste in your existing ARN:
The role name is completely up to you and is just used for managing the roles in your account. Maybe itâs a role that allows management of S3 accounts, like in the example above, or maybe you have a single role that can manage your entire pre-production environment, in which case you might name it âPreprod Writerâ.
Now that youâve created an AWS integration, head back to your stack integration settings and click on the âDeleteâ button next to your legacy integration:
Now choose the âAWSâ option from the âSelect integration to set upâ drop down, select the AWS integration you just created, and check the read and write checkboxes:
Youâll notice that we display an example trust relationship on this screen. You may or may not need to adjust the Trust Relationship of your role at this point. If you already use a StringLike
condition with an <account-name>@*
wildcard you shouldnât need to change anything.
Click on the Attach button to attach your integration to your stack:
Congrats - youâve now successfully migrated!
Via the Terraform Provider»
Migrating via the Terraform Provider is also very simple. The Terraform Provider now contains two new resources, along with an additional data source that you can use:
- spacelift_aws_integration - creates an account level integration.
- spacelift_aws_integration_attachment - attaches an integration to a stack.
- spacelift_aws_integration_attachment_external_id - a data source that can help you generate the correct trust relationship for attaching an integration to a stack.
Starting Configuration»
To begin with, letâs assume you have the following Terraform configuration that creates an IAM role, a Stack, and connects the role to the stack:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|
Migration»
To migrate to the new integration format, we need to take the following steps:
- Add a new AWS integration.
- (optional) Generate an AssumeRole policy for attaching it to our stack.
- (optional) Update the
assume_role_policy
on ouraws_iam_role
resource. - Remove the
spacelift_aws_role
resource. - Attach your new integration to your stack via the
spacelift_aws_integration_attachment
resource.
Steps 2 and 3 are completely optional, and may not be required if you are using wildcard matching for the external ID, for example.
Result»
The following shows the finished result of the migrated Terraform:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|