From c9b539c738368b4a10f5a4c901041e7db9c0a504 Mon Sep 17 00:00:00 2001 From: Sean Hood Date: Tue, 23 Feb 2021 14:27:33 +0000 Subject: [PATCH] Create terratest-your-terraform.md --- content/posts/terratest-your-terraform.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 content/posts/terratest-your-terraform.md diff --git a/content/posts/terratest-your-terraform.md b/content/posts/terratest-your-terraform.md new file mode 100644 index 0000000..cfb2aa5 --- /dev/null +++ b/content/posts/terratest-your-terraform.md @@ -0,0 +1,12 @@ +--- +title: "Terratest your Terraform (Plans)" +date: 2021-02-23T14:03:00Z +draft: true +--- + +## Problem statement + +As an infrastructure engineer writing Terraform, I'd like to test code before I apply it. Some constraints: I'd like this to work with Terraform Cloud and workspaces. + +Workspaces represent `app-region-env` tuples more or less. They all apply the same code, and each are 99% the same, but some have slight differences. These differences are what I'd like to test. +