Hi All, I use a naming convention of services and ...
# general
a
Hi All, I use a naming convention of services and servers where it has DEV TSTS PRD etc in the name. When changing stacks do people use automation to get the stack and then change the name from DEV to PRD based on selected stack? This would also be used for selecting our azure subscription if that's the pattern. What's the convention here to do this?
r
Seems like a reasonable convention. To avoid coupling the stack name and resource names I would probably pass an
environment
key to my config and use that to populate names.
l
Yes, decoupling is good. I renamed a stack that did something like that: when I changed it from "dev" to "dev-old" it wanted to delete all my resources.. had to decouple then 🙂
a
Ok thanks, that sounds good