Hi everyone. I'm trying to use Playground AI for generating cloud architecture diagrams and asset ideas, but I keep hitting a wall with versioning.
I'll describe a VPC setup with subnets, gateways, etc., and get a decent diagram. But if I ask to tweak one thingβlike adding a NAT Gateway for private subnetsβthe new image is a complete reimagining. It won't build *on* the previous version. I have to paste the entire, now-longer, description again from scratch. It feels like there's no "base layer" to iterate on.
Coming from a Terraform mindset, this is tough. In IaC, I'd have a state file and could just modify my code:
```hcl
resource "aws_nat_gateway" "example" {
allocation_id = aws_eip.example.id
subnet_id = aws_subnet.public.id
}
```
Is there a workflow or trick to get proper iterative versions? Or do you all just keep appending to one giant prompt? It gets costly and time-consuming 😓. Maybe I'm using it wrong?