Metadata-Version: 2.1
Name: vinery
Version: 0.1.0
Summary: CLI tool for building modular infrastructure
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: click>=8.1.8
Requires-Dist: networkx>=3.4.2
Requires-Dist: matplotlib
Requires-Dist: pytest >=2.7.3 ; extra == "test"
Provides-Extra: test

<div align="center">
  <img src="./docs/assets/logo.png">
</div>

**`vinery`** is the **simple, **batteries-included** [infrastructure-as-code](https://www.hashicorp.com/en/resources/what-is-infrastructure-as-code)** framework that leverages **opinionated, plug-and-play Terraform/OpenTofu
plans** to programmatically generate **data and analytics infrastructure** in Azure.

## What `vinery` Is Not

❌ A state management tool.

❌ For highly specialized workloads or infrastructure needs.

❌ For teams with *many* platform/infrastructure/devops specialists! Don't want to make it *too* *easy* for them.

## Instead, `vinery` Is

✅ A Terraform/OpenTofu workspace management tool!

✅ Simple! Perfect for data people and other infrastructure non-specialists!

✅ For repeatable deployments, across many tenants!

**`vinery` comes in two parts:**

- A [**library**](./docs/library.md) 📚 of plans for managing Azure infrastructure for data and analytics, that is:

  - **Opinionated:** reasonable choices are made for each resource, allowing for a *sane* amount of configuration.
  - **Plug-and-play:** each plan is designed to provide unique, but complementary, components to the infrastructure.

- The [**vine**](./docs/vine.md) 🍃 CLI, responsible for parsing through each plan's dependencies, builds the project's plan dependency graph, and batch execution of Terraform/OpenTofu commands on the selected plans.

Simply choose which components to include from the library - **vine** determines the required dependencies, tells you which inputs to provide, and executes everything in sequence - allowing you (or your CI) to sit back and pour some of your **`vinery`**'s best grape juice. 🍷

## Getting Started

clone repo

`cd vinery`

`pip install .`

`vine -h`

### Pre-Requisites & Disclaimers

The **vine** CLI expects [OpenTofu CLI](https://opentofu.org/docs/intro/install/)/[Terraform CLI](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli), as well as [Azure CLI](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt) to be installed.

**`vinery`** expects no different settings or configurations than how you would normally configure the Azure provider. However, our default plans **do not** support inline configuration of provider credentials, since we don't recommend it ourselves.

### something something

## This repository supports OpenTofu and Terraform

This project was tested on:

- OpenTofu 1.9.0.
- Terraform 1.6.0.

Both are great options, but [we prefer OpenTofu](./docs/opentofu-vs-terraform.md).

## Known Bugs / Issues

- Changing an existing Databricks Workspace's `public_network_access_enabled` parameter via the `private_frontend` input variable (`local.tfvars`) causes the Terraform/Tofu runtime to get stuck in `Still modifying...`. Despite the message, if the execution is interrupted, the change is successful, as re-running the plan yields `Your infrastructure matches the configuration.` and the changes can be shown to have taken effect in the workspace.

