The aim of this assert library is to provide an easy way to assert terraform plans.
Any terraform plan created with terraform, in JSON format, can be used as input for assertion.
This library expects a terraform plan in JSON format, as described in the terraform documentation.
The library supports the following plan format_version:
- 0.1
This example assumes you are using Mocha and Assert
npm install --save-dev mocha assert
To obtain a terraform plan in JSON format, assuming you have a valid terraform project and has been initialised:
terraform plan -out=plan.tfplan
terraform show -json plan.tfplan > plan.json
Then use plan.json as input for the assert library. This example assumes plan.json has been copied to the same folder :
// test.js
const assert = require('assert');
const terraformAssert = require('@cloudcommons/terraform-assert');
const planJson = require('plan'); // Assuming plan.json has been copied to the same folder as test.js
const plan = terraformAssert(planJson);
describe("My terraform plan test", () => {
describe("Basic tests", () => {
it("Terraform version is correct", () => {
plan.terraformVersion.is("0.12.23");
});
});
});