alokkulkarni/buildandburn — reverse-engineered prompt
Reverse engineered prompt
Build me a simple tool called BuildAndBurn that lets me spin up a temporary AWS environment from one manifest file, then tear it down when I’m done. I want to describe my app services in YAML, including names, Docker images, ports, replicas, and whether they should be exposed, plus common dependencies like Postgres, RabbitMQ, Redis style cache, and Kafka.
The tool should create the needed AWS infrastructure with Terraform, deploy the apps into Kubernetes on EKS with Helm, and line up the environment variables so the apps can talk to the services they asked for. Give me a Python command line script with an up command and a destroy command, plus example manifests, basic docs, and a sample app so I can test it end to end.
Keep it practical and easy to run for someone who has AWS credentials, Terraform, kubectl, and Helm installed. Look up current docs online if you need to.
Want more depth? Deep Reverse