Terraform
This directory holds the terraform modules for maintaining your complete persistent infrastructure.
Prerequisite: install the jq JSON processor: brew install jq
Initial setup
- Manually run the bootstrap module following instructions under
Terraform State Credentials - Setup CI/CD Pipeline to run Terraform
- Copy bootstrap credentials to your CI/CD secrets using the instructions in the base README
- Create a cloud.gov SpaceDeployer by following the instructions under
SpaceDeployers - Copy SpaceDeployer credentials to your CI/CD secrets using the instructions in the base README
- Manually Running Terraform
- Follow instructions under
Set up a new environmentto create your infrastructure
Terraform State Credentials
The bootstrap module is used to create an s3 bucket for later terraform runs to store their state in.
Bootstrapping the state storage s3 buckets for the first time
- Run
terraform init - Run
./run.sh planto verify that the changes are what you expect - Run
./run.sh applyto set up the bucket and retrieve credentials - Follow instructions under
Use bootstrap credentials - Ensure that
import.shincludes a line and correct IDs for any resources created - Run
./teardown_creds.shto remove the space deployer account used to create the s3 bucket
To make changes to the bootstrap module
This should not be necessary in most cases
- Run
terraform init - If you don't have terraform state locally:
- run
./import.sh - optionally run
./run.sh applyto include the existing outputs in the state file
- run
- Make your changes
- Continue from step 2 of the boostrapping instructions
Retrieving existing bucket credentials
- Run
./run.sh show - Follow instructions under
Use bootstrap credentials
Use bootstrap credentials
-
Add the following to
~/.aws/credentials[notify-terraform-backend] aws_access_key_id = <access_key_id from bucket_credentials> aws_secret_access_key = <secret_access_key from bucket_credentials> -
Copy
bucketfrombucket_credentialsoutput to the backend block ofstaging/providers.tfandproduction/providers.tf
SpaceDeployers
A SpaceDeployer account is required to run terraform or deploy the application from the CI/CD pipeline. Create a new account by running:
./create_service_account.sh -s <SPACE_NAME> -u <ACCOUNT_NAME>
Set up a new environment manually
The below steps rely on you first configuring access to the Terraform state in s3 as described in Terraform State Credentials.
-
cdto the environment you are working in -
Set up a SpaceDeployer
# create a space deployer service instance that can log in with just a username and password # the value of < SPACE_NAME > should be `staging` or `prod` depending on where you are working # the value for < ACCOUNT_NAME > can be anything, although we recommend # something that communicates the purpose of the deployer # for example: circleci-deployer for the credentials CircleCI uses to # deploy the application or <your_name>-terraform for credentials to run terraform manually ./create_service_account.sh -s <SPACE_NAME> -u <ACCOUNT_NAME> > secrets.auto.tfvarsThe script will output the
username(ascf_user) andpassword(ascf_password) for your<ACCOUNT_NAME>. Read more in the cloud.gov service account documentation.The easiest way to use this script is to redirect the output directly to the
secrets.auto.tfvarsfile it needs to be used in -
Run terraform from your new environment directory with
terraform init terraform plan -
Apply changes with
terraform apply. -
Remove the space deployer service instance if it doesn't need to be used again, such as when manually running terraform once.
# <SPACE_NAME> and <ACCOUNT_NAME> have the same values as used above. ./destroy_service_account.sh -s <SPACE_NAME> -u <ACCOUNT_NAME>
Structure
Each environment has its own module, which relies on a shared module for everything except the providers code and environment specific variables and settings.
- bootstrap/
|- main.tf
|- providers.tf
|- variables.tf
|- run.sh
|- teardown_creds.sh
|- import.sh
- <env>/
|- main.tf
|- providers.tf
|- secrets.auto.tfvars
|- variables.tf
In the environment-specific modules:
providers.tflists the required providersmain.tfcalls the shared Terraform code, but this is also a place where you can add any other services, resources, etc, which you would like to set up for that environmentvariables.tflists the variables that will be needed, either to pass through to the child module or for use in this modulesecrets.auto.tfvarsis a file which contains the information about the service-key and other secrets that should not be shared
In the bootstrap module:
providers.tflists the required providersmain.tfsets up s3 bucket to be shared across all environments. It lives inprodto communicate that it should not be deletedvariables.tflists the variables that will be needed. Most values are hard-coded in this modulerun.shHelper script to set up a space deployer and run terraform. The terraform action (show/plan/apply/destroy) is passed as an argumentteardown_creds.shHelper script to remove the space deployer setup as part ofrun.shimport.shHelper script to create a new local state file in case terraform changes are needed