Tf Vars To Pydantic
Project description
Features
- Read a Terraform Variables HCL file (variables.tf) and create a Pydantic model from it
- Interpret complex data types (list(string), etc) into Python data types
- Interpret object data types into sub models
- Does not currently support terraform input validation
Requirements
- Python ^3.11
- Pydantic ^1.10.x
- python-hcl2 ^4.3.x
Installation
You can install Tf Vars To Pydantic via [pip] from [PyPI]:
pip install tf-vars-to-pydantic
Usage
Assuming you have a tf vars file that looks like:
variable "foo" {
description = "String variable"
type = string
}
variable "bar" {
description = "String variable with default"
type = number
}
variable "baz" {
type = list(string)
}
variable "qux" {
description = "Boolean variable"
default = true
type = bool
}
from tf_vars_to_pydantic import convert_file
TFVarsModel = convert_file(path="./tests/fixtures/simple.tf", model_name="TFVarsModel")
tfvars_as_pydantic = TFVarsModel(foo="test", bar=7.2, baz=['boop', 'bing', 'bong'])
print(tfvars_as_pydantic)
# foo='test' bar=7.2 baz=['boop', 'bing', 'bong'] qux=True
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Distributed under the terms of the MIT license, Tf Vars To Pydantic is free and open source software.
Issues
If you encounter any problems, please [file an issue] along with a detailed description.
Contributors
Andrew 💻 ⚠️ 📖 |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tf_vars_to_pydantic-0.1.2.tar.gz
.
File metadata
- Download URL: tf_vars_to_pydantic-0.1.2.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d008e6d8800d31e4d756c401d1edf483571c2f18abb7f476844dbc7b534631a |
|
MD5 | bcb2ba6308576d77f94e29d2d788f421 |
|
BLAKE2b-256 | c9db36c81d244487ba73f91bb961114bbf61ab7ca79be2d941f726c1a169f4f5 |
File details
Details for the file tf_vars_to_pydantic-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: tf_vars_to_pydantic-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3144d1b52125184490b54bed9dec45de96af1787974d0111b56ce09e11a89a22 |
|
MD5 | 9a894a666c57b980cab372e45213f6d8 |
|
BLAKE2b-256 | 8bebd5390cb46394ab6998ca16438651cae3f1d95271f64996f5080124ab51cf |