Terraform
This walkthrough shows you how to pass CloudTruth parameters as Environment Variables to Terraform.
You can also use CloudTruth to externally reference backend tfstate output as an external parameter.
Prerequisites
You know basic Terraform.
You have created a CloudTruth API Access token and installed the CLI.
Terraform deploy with CloudTruth
For this example we will build on top of the Terraform AWS tutorial to deploy an EC2 instance defining variables with CloudTruth parameters. You can use any target for your deploys.
Set CloudTruth Terraform Variables
Create a CloudTruth Project called Terraform
.
Now you can create the CloudTruth parameters in the Terraform project that we will pass to Terraform as environment input variables with the TF_VAR_
convention.
Create Terraform Configuration
From your Terraform working directory update your main.tf
with the following configuration.
This main.tf will deploy an EC2 instance to us-west-2 and defines four variables that are centrally managed by CloudTruth. It also shows you how to use various Terraform variable types such as a map and list.
Build Terraform Infrastructure
From your Terraform working directory initialize the infrastructure.
Now when executing a terraform plan
you will notice that you are prompted to enter values for each variable defined.
CloudTruth Run
You can manage your Terraform configuration centrally with CloudTruth and pass Terraform environment input variables with the cloudtruth run CLI command.
The following command will pass the variables from the Terraform
project where we set our input variables directly into terraform apply
.
Terraform will show the outputs and deploy the instance with our CloudTruth values.
Couple this method with CloudTruth Environments and you can manage and deploy different instance types with various configuration setting to your Prod, Dev and Staging with a single command.
Terraform Input Variables
CloudTruth run injects environment variables into your terraform commands. Terraform searches the environment for variables that contain TF_VAR_
preceding the variable name defined in your configuration script. The variable is case sensitive so if it is lower case in main.tf
the variables must have lower case key names in CloudTruth.
Environment input variables have a specific order of precedence and CloudTruth run can be used with any combination that Terraform allows. Values from CloudTruth run be overridden by a file if the same variable exists in a terraform.tfvars
or any of the higher precedence methods of passing values.
Terraform loads variables in the following order, with later sources taking precedence over earlier ones:
Environment variables
The
terraform.tfvars
file, if present.The
terraform.tfvars.json
file, if present.Any
*.auto.tfvars
or*.auto.tfvars.json
files, processed in lexical order of their filenames.Any
-var
and-var-file
options on the command line, in the order they are provided. (This includes variables set by a Terraform Cloud workspace.)
Last updated