I have a web app that is relies on a series of azure services. Currently, to handle different environments, we have a subscription and resource groups to handle each environment that we use (dev, test, staging, production).
Right now, every web app site EXCEPT for Prod uses the default url that Azure assigns to the web app upon creation.
This has led to some issues with in house business case testers getting confused about which urls go to what environment.
I wanted to know if it is possible to create subdomains that are named according to the environment (so if prod is https://superglue.com then dev would be https://dev.superglue.com) and if we can, if there are any reasons NOT to do it this way.
THanks in advance for any help!