Skip to content

Commit

Permalink
Added vnetconfiguration default.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielscholl committed Feb 15, 2024
1 parent 0cf9d89 commit cab0072
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,28 @@ param enablePodSubnet bool = false
param enableVnetInjection bool = false

@description('Optional. Bring your own Virtual Network.')
param vnetConfiguration vnetSettings
param vnetConfiguration vnetSettings = {
group: ''
name: ''
prefix: ''
identityId: ''
aksSubnet: {
name: ''
prefix: ''
}
podSubnet: {
name: ''
prefix: ''
}
vmSubnet: {
name: ''
prefix: ''
}
bastionSubnet: {
name: ''
prefix: ''
}
}

module networkBlade 'modules/blade_network.bicep' = {
name: 'network-blade'
Expand Down

0 comments on commit cab0072

Please sign in to comment.