Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.31 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.31 KB

terraform-registry-api

This API is intended to host a private Terraform Registry API written in Python.

Requirements

Install the requirements by running:

virtualenv venv
source venv/bin/activate
venv/bin/pip install -r requirements.txt

Start

Start the server:

venv/bin/python -m registry

What's missing / Roadmap

  • Implement proper logging
  • Implement local filesystem as backend (SQLite)
  • Implement Terraform module VCS publishing
  • Implement terraform HTTP Status Codes
  • Implement pagination
  • Implement Terraform Provider endpoints
  • Implement GCS as backend
  • Implement SQL as backend
  • Implement Terraform module no VCS publishing

Helpful Links