├── .github └── workflows │ └── bicep-CI.yml ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets └── namingAnimation.gif ├── bicepconfig.json ├── datafiles ├── README.md ├── regionAbbreviations.json ├── regionsDump.json ├── resourceDefinitions.json └── sample.output.json ├── dist ├── naming.module.bicep └── naming.module.json ├── examples ├── example.bicep ├── example.sub.bicep └── example.sub.parameters.json ├── main.js ├── package.json └── templates ├── README.md.hbs └── naming.module.bicep.hbs /.github/workflows/bicep-CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/.github/workflows/bicep-CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/README.md -------------------------------------------------------------------------------- /assets/namingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/assets/namingAnimation.gif -------------------------------------------------------------------------------- /bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/bicepconfig.json -------------------------------------------------------------------------------- /datafiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/datafiles/README.md -------------------------------------------------------------------------------- /datafiles/regionAbbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/datafiles/regionAbbreviations.json -------------------------------------------------------------------------------- /datafiles/regionsDump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/datafiles/regionsDump.json -------------------------------------------------------------------------------- /datafiles/resourceDefinitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/datafiles/resourceDefinitions.json -------------------------------------------------------------------------------- /datafiles/sample.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/datafiles/sample.output.json -------------------------------------------------------------------------------- /dist/naming.module.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/dist/naming.module.bicep -------------------------------------------------------------------------------- /dist/naming.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/dist/naming.module.json -------------------------------------------------------------------------------- /examples/example.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/examples/example.bicep -------------------------------------------------------------------------------- /examples/example.sub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/examples/example.sub.bicep -------------------------------------------------------------------------------- /examples/example.sub.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/examples/example.sub.parameters.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/package.json -------------------------------------------------------------------------------- /templates/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/templates/README.md.hbs -------------------------------------------------------------------------------- /templates/naming.module.bicep.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianton/azure-naming/HEAD/templates/naming.module.bicep.hbs --------------------------------------------------------------------------------