Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elmundio87/terraform_validate
Assists in the enforcement of user-defined standards in Terraform
https://github.com/elmundio87/terraform_validate
hcl python terraform
Last synced: 5 days ago
JSON representation
Assists in the enforcement of user-defined standards in Terraform
- Host: GitHub
- URL: https://github.com/elmundio87/terraform_validate
- Owner: elmundio87
- License: gpl-3.0
- Archived: true
- Created: 2016-04-16T19:22:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T17:14:56.000Z (almost 5 years ago)
- Last Synced: 2024-09-15T23:05:24.935Z (about 2 months ago)
- Topics: hcl, python, terraform
- Language: Python
- Homepage:
- Size: 133 KB
- Stars: 257
- Watchers: 19
- Forks: 43
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-repositories - elmundio87/terraform_validate - Assists in the enforcement of user-defined standards in Terraform (Python)
- awesome-terraform - terraform_validate - Assists in the enforcement of user-defined standards in Terraform. (Testing / Miscellaneous)
- awesome-tf - terraform_validate - Assists in the enforcement of user-defined standards in Terraform. :skull: (Testing / Community providers)
- jimsghstars - elmundio87/terraform_validate - Assists in the enforcement of user-defined standards in Terraform (Python)
README
# Terraform Validate
Linux: [![Linux Build Status](https://travis-ci.org/elmundio87/terraform_validate.svg?branch=master)](https://travis-ci.org/elmundio87/terraform_validate)
Windows: [![Windows Build status](https://ci.appveyor.com/api/projects/status/36dwtekc8tvrny24/branch/master?svg=true)](https://ci.appveyor.com/project/elmundio87/terraform-validate/branch/master)
A python package that allows users to define Policy as Code for Terraform configurations.
By parsing a directory of .tf files using `pyhcl`, each defined resource can be tested using this module.
## Example Usages
### Check that all AWS EBS volumes are encrypted
```
import terraform_validateclass TestEncryptionAtRest(unittest.TestCase):
def setUp(self):
# Tell the module where to find your terraform configuration folder
self.path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../terraform")
self.v = terraform_validate.Validator(self.path)def test_aws_ebs_volume(self):
# Assert that all resources of type 'aws_ebs_volume' are encrypted
self.v.error_if_property_missing() # Fail any tests if the property does not exist on a resource
self.v.resources('aws_ebs_volume').property('encrypted').should_equal(True)def test_instance_ebs_block_device(self):
# Assert that all resources of type 'ebs_block_device' that are inside a 'aws_instance' are encrypted
self.v.error_if_property_missing()
self.v.resources('aws_instance').property('ebs_block_device').property('encrypted').should_equal(True)if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(TestEncryptionAtRest)
unittest.TextTestRunner(verbosity=0).run(suite)```
```
resource "aws_instance" "foo" {
# This would fail the test
ebs_block_device{
encrypted = false
}
}resource "aws_ebs_volume" "bar" {
# This would fail the test
encrypted = false
}
```### Check that AWS resources are tagged correctly
```
import terraform_validateclass TestEncryptionAtRest(unittest.TestCase):
def setUp(self):
# Tell the module where to find your terraform configuration folder
self.path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../terraform")
self.v = terraform_validate.Validator(self.path)def test_aws_ebs_volume(self):
# Assert that all resources of type 'aws_instance' and 'aws_ebs_volume' have the correct tags
tagged_resources = ["aws_instance","aws_ebs_volume"]
required_tags = ["name","version","owner"]
self.v.resources(tagged_resources).property('tags').should_have_properties(required_tags)if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(TestEncryptionAtRest)
unittest.TextTestRunner(verbosity=0).run(suite)
```## Behaviour functions
These affect the results of the Validation functions in a way that may be required for your tests.
### Validator.error_if_property_missing()
By default, no errors will be raised if a property value is missing on a resource. This changes the behavior of .property() calls to raise an error if a property is not found on a resource.
### Validator.enable_variable_expansion()
By default, variables in property values will not be calculated against their default values. This changes the behaviour of all Validation functions, to work out the value of a string when the variables have default values.
eg. `string = "${var.foo}"` will be read as `string = "1"` by the validator if the default value of `foo` is 1.
## Search functions
These are used to gather property values together so that they can be validated.
### Validator.resources([resource_types])
Searches for all resources of the required types and outputs a `TerraformResourceList`.Can be chained with a `.property()` function.
If passed a string as an argument, search through all resource types and list the ones that match the string as a regex.
If passed a list as an argument, only use the types that are inside the list.Outputs: `TerraformResourceList`
### TerraformResourceList.property(property_name)
Collects all top-level properties in a `TerraformResourceList` and exposes methods that can be used to validate the property values.
Can be chained with another `.property()` call to fetch nested properties.
eg. ``.resource('aws_instance').property('name')``
### TerraformResourceList.find_property(regex)
Similar to `TerraformResourceList.property()`, except that it will attempt to use a regex string to search for the property.
eg. ``.resource('aws_instance').find_property('tag[a-z]')``
### TerraformPropertyList.property(property_name)
Collects all nested properties in `TerraformPropertyList` and exposes methods that can be used to validate the property values.
eg. ``.resource('aws_instance').property('tags').property('name')``
### TerraformPropertyList.find_property(regex)
Similar to `TerraformPropertyList.property()`, except that it will attempt to use a regex string to search for the property.
eg. ``.resource('aws_instance').find_property('tag[a-z]')``
## Validation functions
If there are any errors, these functions will print the error and raise an AssertionError. The purpose of these functions is to validate the property values of different resources.
### TerraformResourceList.should_have_properties([required_properties])
Will raise an AssertionError if any of the properties in `required_properties` are missing from a `TerraformResourceList`.
### TerraformPropertyList.should_have_properties([required_properties])
Will raise an AssertionError if any of the properties in `required_properties` are missing from a `TerraformPropertyList`.
### TerraformResourceList.should_not_have_properties([excluded_properties])
Will raise an AssertionError if any of the properties in `required_properties` are missing from a `TerraformResourceList`.
### TerraformPropertyList.should_not_have_properties([excluded_properties])
Will raise an AssertionError if any of the properties in `required_properties` are missing from a `TerraformPropertyList`.
### TerraformResourceList.name_should_match_regex(regex)
Will raise an AssertionError if the Terraform resource name does not match the value of `regex`
### TerraformPropertyList.should_equal(expected_value)
Will raise an AssertionError if the value of the property does not equal `expected_value`
### TerraformPropertyList.should_not_equal(unexpected_value)
Will raise an AssertionError if the value of the property equals `unexpected_value`
### TerraformPropertyList.should_match_regex(regex)
Will raise an AssertionError if the value of the property does not match the value of `regex`
### TerraformPropertyList.list_should_contain([value])
Will raise an AssertionError if the list value does not contain any of the `[value]`
### TerraformPropertyList.list_should_not_contain([value])
Will raise an AssertionError if the list value does contain any of the `[value]`
## Run with Docker
Build the terraform_validate daemon using:
```
docker build -t terraform_validate .
```Then, on a different location, place your tests on your tests.py.
To run:
```
docker run -v `pwd`:/terraform_validate terraform_validate
```Example output (All tests passing):
```
$ docker run -v `pwd`:/terraform_validate terraform_validate
----------------------------------------------------------------------
Ran 3 tests in 1.607sOK
```