Managing Terraform infra in Cortex
Last updated
Last updated
is an infrastructure-as-code tool that lets you provision, manage, and update infrastructure. Terraform can help you manage databases, s3 buckets, clusters, and every other component that comprises your infra.
Terraform’s ability to manage resources comes from providers, which are plugins that enable interaction with cloud providers, SaaS providers, and other APIs. Providers allow you to define as code what a resource looks like.
The instructions on this page apply to , the web-based interface for Terraform.
Provision a new instance
Terraform will automatically provide you with a starter workspace when you begin — our example workspace is named "tfc-guide-example".
Update the instance name in the Terraform variables.tf
file.
All Terraform modules come with a file called variables.tf
. As part of the Terraform script, we can enter variables for a given set, like region or instance type. In the example screen shot below, the variable name is "My Other Great Instance".
Note: Terraform modules also come with a main.tf
file, which contains instructions and information about the action. In our example, the main.tf
file describes the instance that we’re going to create through Terraform.
In Terraform Cloud, navigate to the Run page. Verify that the changes you made to the instance name in variables.tf
have applied.
In Terraform, there are two primary commands: plan
and apply
.
The plan
command creates a plan and preview of the changes that will be made to your infrastructure. During the plan stage, Terraform assesses the main.tf
file with variables and compares it against the state. If there are differences, Terraform prompts you to approve and apply the change.
When you navigate to the run that was triggered by updating variables.tf
, you can see that the plan was automatically conducted. In this case, the plan was to create an instance with the name provided earlier. Verify that the run displays a "Plan finished" message.
In AWS, you can confirm that the instance exists and that the Terraform action was successful:
You must have the Configure Scaffolder templates
permission.
Run the Workflow. When you run it, Cortex will automatically open a pull request against the selected repository.
To verify that the process worked, open Terraform Cloud and navigate to Runs.
Any runs that originate from Cortex will have [Cortex Scaffolder]
at the start of their name. Click into one of these runs to see its status and how many changes were proposed.
Define inputs for Instance name
, Region
, and Instance type
.
HTTP method: Select POST
.
URL: Enter the URL for the Terraform API you want to call.
Headers: Add Authorization: Bearer {{token}}
and Content-type: application/(name)
.
Payload: Build the payload by referencing the outputs of the "User input" block, e.g., {{actions.input.outputs.instance-name}}
Save the Workflow. After saving, click Run at the top of the Workflow to run it.
When the Workflow is run in Cortex, it will override data in the variables.tf
file with information that was entered in the fields.
In Terraform Cloud, you can verify that the action was successful and the run was queued. Runs triggered by actions are named "Triggered via API."
Once the run has been applied, you can also verify it in AWS. In the example screen shot below, the instance name has been changed:
Cortex not only integrates with Terraform, but can enhance your use of it. Once the integration is set up, you’ll use a to interact with Terraform.
Create a JSON file that is equivalent to your Terraform module.
In this file, we defined the region and instance name. You’ll then update the fields in the variables.tf
file so it knows to pull information from the Cookiecutter JSON.
in Cortex.
After you have added the template to Cortex, you can that includes a block using the template.
Terraform Cloud also has an API that can be used to make updates without following the pull request workflow. You can use a in Cortex to execute a run through the API. If a run is set to automatically apply, then Cortex will handle the rest of the process.
in Cortex.
Add a block.
Add an block. Configure the following fields: