File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -82,16 +82,15 @@ Create a Bicep template using the following example.
82
82
@description('The name of the Managed Cluster resource.')
83
83
param clusterName string
84
84
85
- resource existingManagedClusters 'Microsoft.ContainerService/managedClusters@2023-05- 02-preview ' existing = {
85
+ resource existingManagedCluster 'Microsoft.ContainerService/managedClusters@2024- 02-01 ' existing = {
86
86
name: clusterName
87
87
}
88
88
89
89
resource appConfigExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01' = {
90
90
name: 'appconfigurationkubernetesprovider'
91
- scope: existingManagedClusters
91
+ scope: existingManagedCluster
92
92
properties: {
93
93
autoUpgradeMinorVersion: true
94
- configurationProtectedSettings: {}
95
94
configurationSettings: {
96
95
'global.clusterType': 'managedclusters'
97
96
}
@@ -159,16 +158,15 @@ Create a Bicep template using the following example.
159
158
@description('The name of the Managed Cluster resource.')
160
159
param clusterName string
161
160
162
- resource existingManagedClusters 'Microsoft.ContainerService/managedClusters@2023-05- 02-preview ' existing = {
161
+ resource existingManagedCluster 'Microsoft.ContainerService/managedClusters@2024- 02-01 ' existing = {
163
162
name: clusterName
164
163
}
165
164
166
165
resource appConfigExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01' = {
167
166
name: 'appconfigurationkubernetesprovider'
168
- scope: existingManagedClusters
167
+ scope: existingManagedCluster
169
168
properties: {
170
169
autoUpgradeMinorVersion: false
171
- configurationProtectedSettings: {}
172
170
configurationSettings: {
173
171
'global.clusterType': 'managedclusters'
174
172
}
You can’t perform that action at this time.
0 commit comments