From cab0072c2ac5e2a3f04d603c880b45b9e4532f19 Mon Sep 17 00:00:00 2001 From: Daniel Scholl Date: Wed, 14 Feb 2024 18:53:51 -0600 Subject: [PATCH] Added vnetconfiguration default. --- bicep/main.bicep | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/bicep/main.bicep b/bicep/main.bicep index 9bc1fb6d..7746e09e 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -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'