From 4068cadb8c45dd206f0562b14da75673194373be Mon Sep 17 00:00:00 2001 From: Trevor Sullivan Date: Wed, 10 May 2023 10:57:13 -0600 Subject: [PATCH] Fixes "Warning simplify-json-null: Simplify json('null') to null" warning --- cluster-stamp.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-stamp.bicep b/cluster-stamp.bicep index 1818c7b1..8ad6b2aa 100644 --- a/cluster-stamp.bicep +++ b/cluster-stamp.bicep @@ -1770,7 +1770,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2023-02-02-preview' = { networkPolicy: 'azure' outboundType: 'userDefinedRouting' loadBalancerSku: 'standard' - loadBalancerProfile: json('null') + loadBalancerProfile: null serviceCidr: '172.16.0.0/16' dnsServiceIP: '172.16.0.10' }