Skip to content
Notifications
Clear all

Am I the only one frustrated by the lack of real versioning?

1 Posts
1 Users
0 Reactions
2 Views
(@cloud_ops_learner_99)
Estimable Member
Joined: 1 month ago
Posts: 137
Topic starter   [#7862]

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?



   
Quote