Overview
|
|
| Name |
bastionhost |
| Tag |
2026.8.26.3 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/bastionhost:2026.8.26.3 |
| Last updated |
2026-08-26 07:45:37:+00:00 |
| Created |
2026-08-26 07:45:37:+00:00 |
| Digest |
sha256:ed1894c9e12aa5854938c6f7c594b3296e655fc2426fc68c19e6e23f92ee8b62 |
Parameters
| Name |
Type |
Required |
Description |
env |
string |
Yes |
The environment to be created |
version |
string |
Yes |
Version number |
location |
string |
No
resourceGroup().location |
Location for all resources |
namePrefix |
string |
No
'' |
|
system |
string |
Yes |
System/project name |
region |
string |
No
'' |
|
nameSuffix |
string |
No
'' |
|
bastionHostName |
string |
No
format('{0}{1}{2}-bastion{3}{4}-{5}{6}{7}', namePrefix, if(empty(namePrefix), '', '-'), system, if(empty(region), '', '-'), region, env, if(empty(nameSuffix), '', '-'), nameSuffix) |
Full server name, if not specified use default namePrefix-system-bastion-region-env-suffix |
tags |
object |
Yes |
Tags to add to the resources |
skuName |
string
'Basic', 'Standard' |
No
'Basic' |
sku Name |
vnetName |
string |
Yes |
|
disableCopyPaste |
bool |
No
false |
|
enableFileCopy |
bool |
No
false |
|
enableTunneling |
bool |
No
false |
|
enableIpConnect |
bool |
No
false |
|
enableShareableLink |
bool |
No
false |
|
Outputs
| Name |
Type |
Description |
bastionId |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
@description('System/project name')
param system string
@description('Tags to add to the resources')
param tags object
param vnetName string
module bastionhost 'br:bicepacrdevwcom.azurecr.io/bicep/modules/bastionhost:2026.8.26.3' = {
name: 'bastionhost${env}${version}'
params: {
env: env
version: version
system: system
tags: tags
vnetName: vnetName
}
}