Skip to main content

Tf Vars To Pydantic

Project description

Latest Commit GitHub release (latest by date)
GitHub Workflow Status Test and Lint (branch) Contributors
Package version

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
Andrew

💻 ⚠️ 📖

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tf_vars_to_pydantic-0.1.2.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

tf_vars_to_pydantic-0.1.2-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

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

Hashes for tf_vars_to_pydantic-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6d008e6d8800d31e4d756c401d1edf483571c2f18abb7f476844dbc7b534631a
MD5 bcb2ba6308576d77f94e29d2d788f421
BLAKE2b-256 c9db36c81d244487ba73f91bb961114bbf61ab7ca79be2d941f726c1a169f4f5

See more details on using hashes here.

File details

Details for the file tf_vars_to_pydantic-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for tf_vars_to_pydantic-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3144d1b52125184490b54bed9dec45de96af1787974d0111b56ce09e11a89a22
MD5 9a894a666c57b980cab372e45213f6d8
BLAKE2b-256 8bebd5390cb46394ab6998ca16438651cae3f1d95271f64996f5080124ab51cf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page