A simple tool for visualizing and analyzing Terraform plan files.
- Hosts a simple web app to show a html representation of a terraform plan that has been parsed by Azure AI
- Provides a clear, human-readable summary of changes
- Highlights resource additions, deletions, and modifications
- Python
Clone the repository:
git clone https://github.com/hmcts/tfplan-viewer.gitInstall dependencies (if applicable):
pip install -r requirements.txt- Provide a storage account name and key or SAS via an environment variable:
export AZURE_STORAGE_ACCOUNT=mystorageaccount
export AZURE_STORAGE_KEY=mystoragekey-
Run the viewer:
python -m uvicorn tfplan-viewer:app --reload