Metadata-Version: 2.1
Name: helicopyter
Version: 2024.30.2
Summary: Python Terraform JSON configuration generator
Project-URL: Homepage, https://github.com/covracer/helicopyter
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Installation/Setup
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cdktf
Requires-Dist: cdktf-cdktf-provider-null
Requires-Dist: typed-argument-parser

# Helicopyter

Helicopyter allows people to conveniently describe infrastructure using Python.

Perhaps like a helicopter hovering between the clouds and the ground, it allows this in a way that's less like the AWS
Cloud Development Kit (CDK) and more like Terraform.

## Background
Helicopyter uses [CDKTF](https://github.com/hashicorp/terraform-cdk) and is inspired by [Configerator](https://research.facebook.com/file/877841159827226/holistic-configuration-management-at-facebook.pdf), [Terraformpy](https://github.com/NerdWalletOSS/terraformpy), and [Terraform JSON configuration syntax](https://developer.hashicorp.com/terraform/language/syntax/json).

## What Helicopyter does (goals)
- Fix the CDK style naming mess. Meaningful names make review easy. Terraform's resource prefix
  style results in meaningful names and aligns with "Namespaces are one honking great idea -- let's do
  more of those!" The AWS CDK style of suffixing hashes generates difficult-to-review `terraform plan`
  output and ignores the existing namespaces.
- Provide a `f'deploys/{cona}/terraform'` directory structure, grouping
    * Primarily by "codename" (cona), probably synonymous with application, deployment, and service
    * Secondarily by tool, such as `ansible`, `docker`, `terraform`, `python`
- Enable hand-written Hashicorp Configuration Language (HCL) files and auto-generated HCL/JSON to
  co-exist, allowing incremental adoption.
- Golang Terraform has a pretty good command line interface. The `ht[aip]` functions in
  `includes.sh` try to wrap it very lightly.

## What Helicopyter will probably never do (non-goals)
- Support languages other than Python
- Make use of the CDKTF's command line interface. Integration with it is untested and not recommended.

## What Helicopyter might do in the future
- Support multiple backend configurations per codename
- Iterate on the directory structure
- `__str__()` for `to_string()`, etc.
- Why do we need a Node.js server? Can we build dataclasses or Pydantic models out of the type annotations already being
  generated?
- Provide helper classes or functions for useful but annoyingly verbose patterns such as local-exec provisioner command
