Terraform
Basic Commands
Initialise configuration: (use folder as a location to store terraform configuration files )
| |
Format configuration files
| |
Validate configuration
| |
Show possible changes before applying:
| |
Apply changes:
| |
Inspect state of configuration
| |
Output plan to show in a format that can be used in a text file to display correctly
| |
Use tfvars file when executing plan or apply actions:
| |
Terraform Configuration files
The main config files are the main.tf and variables.tf files
main.tf
The main.tf contains the main configuration about the build you are creating. The first bit of info in the file is the terraform provider. This is a block of code describing the service that terraform will be building on (AWS, Azure, vSphere etc). It will also contain the info to login to the service.
for the vsphere provider:
| |
data block
In the main file you will place data blocks to describe the infrastructure. this will be used to get the info when building the resources.
You will see the two arguments in the data block, the first describes what type of data it is (this is an object in the terraform provider) and the second is the name which can be used to reference the data elsewhere in the config
In the compute cluster data block you can see it is looking at the earlier data block by using the data.vsphere_datacenter.datacenter description
| |
variables.tf
This file will contain the variables for the main.tf file. This way it is easier to do different builds using the same main file.
example of the variable code block for the vsphere provider variables:
| |
Clone from template
When building templates make sure you add the “firmware” option to the “vsphere_virtual_machine” resource. This needs to be set to “efi” if the template is built with an efi firmware. By default the clone does not apply the same firmware as the template.
==Terraform For Azure== When using terraform for an azure environment you will need to setup the environment differently.
First, terraform will need a service principal to access the azure tenant to carry out the changes.
To create the required configuration you will need to use the azure CLI:
| |
it will show you the subscriptions your account has access to after login. Set the subscription you want to create the service principal in, make sure to save the output so you can use the appid and password to connect later on:
| |
Create the service principal:
| |
you can then setup your environment with the details for the service principal. Alternatively you can save the details in the variables file for use later, however this is less secure:
| |
once this is complete you can then build your main.tf configuration.