Skip to content

Commit

Permalink
Renamed AKS
Browse files Browse the repository at this point in the history
  • Loading branch information
danielscholl committed Jan 19, 2024
1 parent 1b672a1 commit 1dc0d40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ The solution template is provisioned using the azure developer cli.

| Action | Command |
| :----- | :------------------------- |
| Start | `azd up` |
| Start | `azd provision` |
| Stop | `azd down --purge --force` |


Expand Down
2 changes: 1 addition & 1 deletion bicep/modules/aks_cluster.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ param istioRevision string = 'asm-1-18'
*/

@description('The name of the AKS cluster.')
var name = 'aks-${uniqueString(resourceGroup().id, resourceName)}'
var name = 'aks-${replace(resourceName, '-', '')}${uniqueString(resourceGroup().id, resourceName)}'

var serviceMeshProfileObj = {
istio: {
Expand Down

0 comments on commit 1dc0d40

Please sign in to comment.