2026.8.26.3

Overview

Name vpngateway
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/vpngateway:2026.8.26.3
Last updated 2026-08-26 07:48:43:+00:00
Created 2026-08-26 07:48:43:+00:00
Digest sha256:3fd23648c6d9e05b14288d9a72be3442ce875a78af75c287f1bf436907f095ad

Parameters

Name Type Required Description
env string Yes
namePrefix string No
''
system string Yes
shortLocation string No
''
nameSuffix string No
''
vpnGatewayName string No
format('{0}{1}vpngw-{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
connections array No
[
]
vnpGateway connections

Outputs

Name Type Description
vpnGatewayId 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 vpngateway 'br:bicepacrdevwcom.azurecr.io/bicep/modules/vpngateway:2026.8.26.3' = {
    name: 'vpngateway${env}${version}'
    params: {
      env: env
      system: system
      tags: tags
    }
}