Open andradf opened 1 year ago
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @QingChenmsft, @vaishnavk, @juhacket. Please see https://aka.ms/biceptypesinfo for troubleshooting help.
Author: | andradf |
---|---|
Assignees: | - |
Labels: | `inaccuracy`, `Needs: Triage :mag:`, `Service Attention`, `Service Fabric` |
Milestone: | - |
Resource Type
Microsoft.ServiceFabric/clusters/...
Api Version
2022-01-01
Issue Type
Missing property(s)
Other Notes
Service fabric's latest schema is 2022-01-01 according to https://github.com/Azure/azure-resource-manager-schemas/blob/main/schemas/2022-01-01/Microsoft.ServiceFabric.json. The latest supported schema by Bicep seems to be 2021-06-01. When using 2022-01-01 I get the warning
Resource type "Microsoft.ServiceFabric/clusters/applications/services@2022-01-01" does not have types available
Bicep Repro
resource clusterName_TerminalsServer_AM_NDCTerminalServer 'Microsoft.ServiceFabric/clusters/applications/services@2022-01-01' = { parent: clusterName_MyApp name: 'MyService' location: clusterLocation properties: { serviceKind: 'Stateless' serviceTypeName: 'MyServiceType' instanceCount: 3 minInstanceCount: 1 partitionDescription: { partitionScheme: 'Singleton' } } }
Confirm