Overview
|
|
| Name |
routetable |
| Tag |
2026.8.25.4 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/routetable:2026.8.25.4 |
| Last updated |
2026-08-25 10:42:08:+00:00 |
| Created |
2026-08-25 10:42:08:+00:00 |
| Digest |
sha256:d4f3ae3e08a2b441c9468b0d4ad10b494f000ca5648f6c0973cfa67b122eae8d |
Parameters
| Name |
Type |
Required |
Description |
env |
string |
Yes |
|
namePrefix |
string |
No
'' |
|
system |
string |
Yes |
|
shortLocation |
string |
No
'' |
|
nameSuffix |
string |
No
'' |
|
routeTableName |
string |
No
format('{0}{1}routetable-{2}{3}{4}{5}{6}{7}{8}', namePrefix, if(empty(namePrefix), '', '-'), system, if(empty(system), '', '-'), shortLocation, if(empty(shortLocation), '', '-'), env, if(empty(nameSuffix), '', '-'), nameSuffix) |
|
tags |
object |
Yes |
Tags to add to the resources |
location |
string |
No
resourceGroup().location |
Location for all resources |
routes |
array |
No
[ ] |
|
Outputs
| Name |
Type |
Description |
routeTableId |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param system string
@description('Tags to add to the resources')
param tags object
module routetable 'br:bicepacrdevwcom.azurecr.io/bicep/modules/routetable:2026.8.25.4' = {
name: 'routetable${env}${version}'
params: {
env: env
system: system
tags: tags
}
}