Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added networking components to Azure naming conventions #38

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/cloud-guidance/azure/ukho-azure-naming-convention.md
Expand Up @@ -6,8 +6,12 @@
| Resource Groups | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-RG | Must be less than 90 characters |M-TidalAPI-PRD-RG <br /> M-TidalAPI-APPLICATION-DQC-RG <br /> |
tomling marked this conversation as resolved.
Show resolved Hide resolved
| Storage Account | {CloudKey}{Product/Service/Area}{Env}storage <br /> | **No Hyphens** <br /> **Must be lowercase** <br />| mtidalapidevstorage |
| Virtual Machine | {CloudKey}{Product/Service/Area}[{SubArea}]{Env}VM[nn] | Must be less than 15 characters <br /> Hypens are optional <br /> | MSTDLAPIPRDVM01 |
| VM elements | {CloudKey}{Product/Service/Area}[{SubArea}]{Env}VM[nn]-{component} | Must start with the VM name from rules above <br /> Hypens are optional | MSTDLAPIPRDVM01-nsg |
| Virtual Network | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-vnet | Must be less than 64 characters <br /> | MSTDLAPIPRDVM01-vnet |
| VM elements | {CloudKey}{Product/Service/Area}[{SubArea}]{Env}VM[nn]-{component} | Must start with the VM name from rules above <br /> Hypens are optional | MSTDLAPIPRDVM01-nic |
| Virtual Network | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-vnet | Must be less than 64 characters <br /> | ms-nmwebsearch-dev-vnet |
| Subnet | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-subnet | Must be less than 64 characters <br /> | ms-nmwebsearch-dev-subnet |
| Network Security Group | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-nsg | Must be less than 64 characters <br /> | MSTDLAPIPRDVM01-nsg |
| Routing Table | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-rt | Must be less than 64 characters <br /> | MSTDLAPIPRDVM01-rt |
| Routing Table Route | {Destination Product/Service/Area}[-{SubArea}]-route | Must be less than 64 characters <br /> | ms-SharedServicesSQL-route |
| SaaS/PaaS | {CloudKey}-{Product/Service/Area}[-{SubArea}]-{Env}-{SaaS/Paas} <br /> | Character limit depends on service - [naming-conventions](https://docs.microsoft.com/en-us/azure/architecture/best-practices/naming-conventions) <br /> | M-TidalAPI-DEV-api-appservice |
tomling marked this conversation as resolved.
Show resolved Hide resolved

**Tips:**
Expand Down