Releases: terraform-compliance/cli
Releases · terraform-compliance/cli
1.0.3
1.0.2
1.0.1
1.0.0
This is a MAJOR release.
Please consult CHANGELOG
BREAKING BACKWARD COMPATIBILITY for terraform-compliance
since the parameters has changed. This is a MAJOR upgrade and a re-design of the tool.
- This version only supports
terraform
0.12.0 and 0.12.1. - Removed
-t
parameter. - Introduced
-p
parameter where-p
is either ;terraform plan -out=<file>.out
output file orterraform show -json <file.out> > file.json
output for checking the plan (changes)terraform show -json
output for checking the whole state
- Instead of parsing
HCL
,terraform-compliance
is now parsing/processing againstterraform show
output. - Conversion from
terraform
internal plan format to json. - Full support for
terraform
interpolations and modules. - Minor upgrades on dependencies
- Removed many methods/functions that was doing
terraform
's job - Revamped all steps and required helper functions/methods
- Instead of having
untaggable_resources
nowterraform-compliance
auto-detects if a resource hastag
property. - Removed
terraform-validate
usage. - Introduced internal
terraform-compliance
exceptions instead of generic ones. - Started to keep a CHANGELOG for better understanding about what happens in the tool :)
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
Merge pull request #83 from Miovision/UpgradeToPython3 * Upgrade to use python 3. * Bump version to 0.6.0 * Update setup.py and travis.yml to python 3.X. * Remove unsupported versions of python 3.X. * Remove python 3.2 due to error installing colorful. * Update travis.yml to test all python versions. * python 3.2 -> 3.3. * Specify single python version. * Use same python version as docker image.