Terraform Testing Unleashed From Examples to Assertions in Real-World Scenarios

rw-book-cover

Terraform’s test command, introduced in version 1.6.0, opens up the possibility to integrate testing directly within Terraform configurations. This feature allows module developers to verify functionality, ensure compatibility, and simulate different scenarios that the module might encounter.

Like in traditional software development, when writing a Unit Test you can have some code that executes before the test is executed. This is often called “Test Setup” or “Test Initialization” and it prepares the test runtime with the necessary in-memory state to execute your Unit Tests. In traditional programming, that means loading certain values into memory, creating mock objects that override very specific methods to avoid spending unnecessary time or adding unnecessary dependencies on external components.

However, in Terraform that means provisioning the pre-requisite resources that you need in order to execute your test. Just like in traditional programming, a lot of this depends on on what your module does and how you have designed its scope.

For example, if your module provisions a Virtual Machine, you would likely need to set up a Virtual Network with a subnet and some default settings to allow your virtual machine to be created.

Likewise, if your module provisions a Virtual Machine Extension, that expects to be attached to a Virtual Machine, then you would need to provision a Virtual Machine that you…