Overview
|
|
| Name |
subnetsobject |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/subnetsobject:2026.9.9.2 |
| Last updated |
2026-09-09 12:51:27:+00:00 |
| Created |
2026-09-09 12:51:27:+00:00 |
| Digest |
sha256:930e8ca9d3ff06d2be920e244f8195a88f2eb95c2e1fff9cd289c16ccaeafeee |
Parameters
| Name |
Type |
Required |
Description |
subnets |
array |
Yes |
|
vNetFirstOctet |
int |
Yes |
|
vNetSecondOctet |
int |
Yes |
|
natGatewayId |
string |
Yes |
|
subnetFilter |
array |
Yes |
|
Outputs
| Name |
Type |
Description |
subnetsSummary |
array |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param subnets array
param vNetFirstOctet int
param vNetSecondOctet int
param natGatewayId string
param subnetFilter array
module subnetsobject 'br:bicepacrdevwcom.azurecr.io/bicep/modules/subnetsobject:2026.9.9.2' = {
name: 'subnetsobject${env}${version}'
params: {
subnets: subnets
vNetFirstOctet: vNetFirstOctet
vNetSecondOctet: vNetSecondOctet
natGatewayId: natGatewayId
subnetFilter: subnetFilter
}
}