Terraform and AFT versions - AWS Control Tower

Terraform and AFT versions

Account Factory for Terraform (AFT) supports Terraform version 1.6.0 or later. You must provide a Terraform version as an input parameter for the AFT deployment process, as shown in the example that follows.

terraform_version = "1.6.0"

Terraform distributions

AFT supports three Terraform distributions:

  • Terraform Community Edition

  • Terraform Cloud

  • Terraform Enterprise

These distributions are explained in the sections that follow. Provide the Terraform distribution of your choice as an input parameter during the AFT bootstrap process. For more information on AFT deployment and input parameters, see Deploy AWS Control Tower Account Factory for Terraform (AFT) .

If you choose the Terraform Cloud or Terraform Enterprise distributions, the API token you specify for terraform_token must be a User or Team API token. An Organization token is not supported for all required APIs. For security reasons, you must avoid checking in this token's value to your version control system (VCS) by assigning a terraform variable, as shown in the example that follows.

# Sensitive variable managed in Terraform Cloud: terraform_token = var.terraform_cloud_token

Terraform Community Edition

When you select Terraform Community Edition as your distribution, AFT manages the Terraform backend for you in the AFT management account. AFT downloads the terraform-cli of your specified Terraform version to run during the AFT deployment and the AFT pipeline phases. The resulting Terraform state configuration is stored in an Amazon S3 bucket, named with the following form:

aft-backend-[account_id]-primary-region

AFT also creates an Amazon S3 bucket that replicates your Terraform state configuration in another AWS Region, for disaster recovery purposes, named with the following form:

aft-backend-[account_id]-secondary-region

We recommend that you enable multi-factor authentication (MFA) for delete functions on these Terraform state Amazon S3 buckets. To learn more about Terraform Community Edition, see the Terraform documentation .

To select Terraform OSS as your distribution, provide the following input parameter:

terraform_distribution = "oss"

Terraform Cloud

When you select Terraform Cloud as your distribution, AFT creates workspaces for the following components in your Terraform Cloud organization, which initiates an API-driven workflow.

  • Account request

  • AFT customizations for accounts that AFT provisions

  • Account customizations for accounts that AFT provisions

  • Global customizations for accounts that AFT provisions

Terraform Cloud manages the resulting Terraform state configuration.

When you select Terraform Cloud as your distribution, provide the following input parameters:

  • terraform_distribution = "tfc"

  • terraform_token – This parameter contains the value of the Terraform Cloud token. AFT marks the as sensitive and stores the value as a secure string in the SSM parameter store in the AFT management account. We recommend that you periodically rotate the value of the Terraform token according to your company's security policies and compliance guidelines. The Terraform token should be a User or Team level API token. Organization tokens are not supported.

  • terraform_org_name – This parameter contains the name of your Terraform Cloud organization.

Note

Multiple AFT deployments in a single Terraform Cloud organization is not supported.

For information about how to set up Terraform Cloud, see the Terraform documentation.

Terraform Enterprise

When you select Terraform Enterprise as your distribution, AFT creates workspaces for the following components in your Terraform Enterprise organization, and it triggers API-driven workflow for the resulting Terraform runs.

  • Account request

  • AFT account provisioning customizations for accounts provisioned by AFT

  • Account customizations for accounts provisioned by AFT

  • Global customizations for accounts provisioned by AFT

The resulting Terraform state configuration is managed by your Terraform Enterprise setup.

To select Terraform Enterprise as your distribution, provide the following input parameters:

  • terraform_distribution = "tfe"

  • terraform_token – This parameter contains the value of your Terraform Enterprise token. AFT marks its value as sensitive and stores it as a secure string in the SSM parameter store, in the AFT management account. We recommend that you periodically rotate the value of the Terraform token, according to your company's security policies and compliance guidelines.

  • terraform_org_name – This parameter contains the name of your Terraform Enterprise organization.

  • terraform_api_endpoint – This parameter contains the URL of your Terraform Enterprise environment. The value of this parameter must be in the format:

    https://{fqdn}/api/v2/

See the Terraform documentation to learn more about how to set up Terraform Enterprise.