From b4d53ee336b4858f2cc31d5a703fb8f84f6a8d9b Mon Sep 17 00:00:00 2001 From: Jay Gordon Date: Tue, 12 Oct 2021 10:46:38 -0400 Subject: [PATCH] Update aks.bicep --- aks.bicep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aks.bicep b/aks.bicep index 32b96c9..019a2a4 100644 --- a/aks.bicep +++ b/aks.bicep @@ -1,6 +1,6 @@ // mandatory params @description('The unique DNS prefix for your cluster, such as myakscluster. This cannot be updated once the Managed Cluster has been created.') -param dnsPrefix string +param dnsPrefix string = resourceGroup().name @description('The administrator username to use for Linux VMs.') param linuxAdminUsername string @@ -12,7 +12,7 @@ param sshRSAPublicKey string param servicePrincipalClientId string @description('The unique name for the AKS cluster, such as myAKSCluster.') -param uniqueclustername string +param uniqueclustername string = resourceGroup().name @secure() @description('The secret password associated with the service principal.')