terraformtest
terraformtest copied to clipboard
Easier way to unit test terraform
Results
2
terraformtest issues
Sort by
recently updated
recently updated
newest added
I want to reduce the paperwork required to run a test. Eg.: ``` tfPlan, err := terraformtest.ReadPlan("./mymodule.plan.json") if err != nil { t.Fatalf("Cannot read plan file ./mymodule.plan.json: %v", err) }...
enhancement
Currently we can only test values but we may want to test some variables. ``` { "variables": { } } ``` The transform function should also store the values inside...
enhancement
good first issue