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 > plan.json
Then upload plan.json
to tfUI.
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.
You can check releases here: https://github.com/IIBenII/tfui/releases.
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