Create an Azure naming convention builder interface in NME to enable deployment of AVD resources with names that align to the target environment standards (standards might be enforced or audited in the target environment with a Landing zone / Azure policy).
This approach would enable resources created in NME with automatically generated names that align to the existing standards (e.g. workspace, host pool, application groups, storage accounts, etc.). This should also assist in reducing administrator effort by prefilling resource names when creating objects.
Names for some resources - including storage accounts, may need to align to the uniqueString() function used in ARM/Bicep (https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/bicep-functions-string#uniquestring) - these objects need to be globally unique, so uniqueString() is used to generate a deterministic hash string using subscription, resource group etc.
Comments (0 comments)