Skip to content

Commit

Permalink
Update aks.bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydestro authored Oct 12, 2021
1 parent 680a686 commit b4d53ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aks.bicep
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.')
Expand Down

0 comments on commit b4d53ee

Please sign in to comment.