Skip to content

Commit 29189bd

Browse files
Feedback
1 parent 8295224 commit 29189bd

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

articles/aks/azure-app-configuration.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,15 @@ Create a Bicep template using the following example.
8282
@description('The name of the Managed Cluster resource.')
8383
param clusterName string
8484
85-
resource existingManagedClusters 'Microsoft.ContainerService/managedClusters@2023-05-02-preview' existing = {
85+
resource existingManagedCluster 'Microsoft.ContainerService/managedClusters@2024-02-01' existing = {
8686
name: clusterName
8787
}
8888
8989
resource appConfigExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01' = {
9090
name: 'appconfigurationkubernetesprovider'
91-
scope: existingManagedClusters
91+
scope: existingManagedCluster
9292
properties: {
9393
autoUpgradeMinorVersion: true
94-
configurationProtectedSettings: {}
9594
configurationSettings: {
9695
'global.clusterType': 'managedclusters'
9796
}
@@ -159,16 +158,15 @@ Create a Bicep template using the following example.
159158
@description('The name of the Managed Cluster resource.')
160159
param clusterName string
161160
162-
resource existingManagedClusters 'Microsoft.ContainerService/managedClusters@2023-05-02-preview' existing = {
161+
resource existingManagedCluster 'Microsoft.ContainerService/managedClusters@2024-02-01' existing = {
163162
name: clusterName
164163
}
165164
166165
resource appConfigExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01' = {
167166
name: 'appconfigurationkubernetesprovider'
168-
scope: existingManagedClusters
167+
scope: existingManagedCluster
169168
properties: {
170169
autoUpgradeMinorVersion: false
171-
configurationProtectedSettings: {}
172170
configurationSettings: {
173171
'global.clusterType': 'managedclusters'
174172
}

0 commit comments

Comments
 (0)