Skip to content

Commit 5c59389

Browse files
author
Seth
committed
Merge branch 'feature/avm-waf-aligned' of https://github.com/microsoft/Modernize-your-code-solution-accelerator into feature/avm-waf-aligned
2 parents 6d1d94c + 21fc125 commit 5c59389

4 files changed

Lines changed: 294 additions & 222 deletions

File tree

infra/Deployment_Plan.md

Lines changed: 0 additions & 161 deletions
This file was deleted.

infra/main_network.bicep

Lines changed: 0 additions & 53 deletions
This file was deleted.

infra/modules/network/main.bicep

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ param tags object = {}
2323

2424

2525
// jumpbox parameters
26-
param jumpboxVM bool = false // set in .bicepparam file
27-
param jumpboxSubnet object = {} // set in .bicepparam file
28-
param jumpboxAdminUser string = 'JumpboxAdminUser' // set in .bicepparam file
26+
param jumpboxVM bool = false
27+
param jumpboxSubnet object = {}
28+
param jumpboxAdminUser string = 'JumpboxAdminUser'
2929
@secure()
30-
param jumpboxAdminPassword string // set in .bicepparam file
30+
param jumpboxAdminPassword string
3131
param jumpboxVmSize string = 'Standard_D2s_v3'
3232
var jumpboxVmName = 'jumpboxVM-${resourcesName}'
3333

3434
// Azure Bastion Host parameters
35-
param enableBastionHost bool = false // set in .bicepparam file
36-
param bastionSubnet object = {} // set in .bicepparam file
35+
param enableBastionHost bool = false
36+
param bastionSubnet object = {}
3737
var bastionHostName = 'bastionHost-${resourcesName}'
3838

3939

@@ -106,5 +106,3 @@ output jumpboxSubnetId string = jumpbox.outputs.subnetId
106106
output jumpboxVmName string = jumpbox.outputs.vmName
107107
output jumpboxVmId string = jumpbox.outputs.vmId
108108

109-
110-

0 commit comments

Comments
 (0)