Simple tool to visualize your terraform plan
tfUI
Description
Simple tool to visualize your terraform plan. Generate your terraform plan as json with these commands:
terraform plan -out=./plan/out.txt
terraform show -json ./plan/out.txt
Then upload it to tfUI.
Docker
Pull from docker hub:
docker pull iibenii/tfui:latest
docker run -rm -p 8080:80 iibenii/tfui:latest
You can run tfUI with docker:
docker build -t tfui .
docker run -rm -p 8080:80 tfui
Then go to http://localhost:8080.
Release
You can check releases here: https://github.com/IIBenII/tfui/releases.
Development
This app is build with Vuejs 2. You can setup local environment with npm and run local development server with these commands:
npm install
npm run serve