2026.8.25.2

Overview

Name natgateway
Tag 2026.8.25.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/natgateway:2026.8.25.2
Last updated 2026-08-25 09:47:04:+00:00
Created 2026-08-25 09:47:04:+00:00
Digest sha256:a5c4ab488bc474047c182aac1277fec4ef3434484c749ee5bf171ad7b69283e2

Parameters

Name Type Required Description
env string Yes
version string Yes
namePrefix string No
''
system string Yes
shortLocation string No
''
nameSuffix string No
''
publicIpAddressName string No
format('{0}{1}natgwpublicip-{2}{3}{4}{5}{6}{7}{8}', namePrefix, if(empty(namePrefix), '', '-'), system, if(empty(system), '', '-'), shortLocation, if(empty(shortLocation), '', '-'), env, if(empty(nameSuffix), '', '-'), nameSuffix)
natGatewayName string No
format('{0}{1}natgw-{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
skuName string
'Standard'
No
'Standard'
idleTimeoutInMinutes int No
4
Idle timeout

Outputs

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