-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from azure-javaee/refactor_bicep_versions
Refactor: Configure Bicep Apiversions with properties file
- Loading branch information
Showing
3 changed files
with
95 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
## Use the following command to get the latest 10 API versions for a given resource type | ||
## ```bash | ||
## export NameSpace=<your_name_space> | ||
## export ResourceType=<your_resource_type> | ||
## az provider show --namespace ${NameSpace} --query "resourceTypes[?resourceType=='${ResourceType}'].apiVersions[:10]" \ | ||
## | jq -r '.[][] | select(test("preview$"; "i") | not)' | head -n 10 | ||
## ``` | ||
## | ||
|
||
# Microsoft.Authorization/roleAssignments | ||
azure.apiVersionForRoleAssignment=2022-04-01 | ||
# Microsoft.Authorization/roleDefinitions | ||
azure.apiVersionForRoleDefinitions=2022-04-01 | ||
# Microsoft.ContainerRegistry/registries | ||
azure.apiVersionForContainerRegistries=2023-07-01 | ||
# Microsoft.ContainerService/managedClusters | ||
azure.apiVersionForManagedClusters=2023-08-01 | ||
# Microsoft.Compute/availabilitySets | ||
azure.apiVersionForAvailabilitySets=2023-07-01 | ||
# Microsoft.Compute/virtualMachines | ||
azure.apiVersionForVirtualMachines=2024-03-01 | ||
# Microsoft.Compute/virtualMachines/extensions | ||
azure.apiVersionForVirtualMachineExtensions=2024-03-01 | ||
# Microsoft.Compute/virtualMachineScaleSets | ||
azure.apiVersionForVirtualMachineScaleSets=2024-03-01 | ||
# Microsoft.KeyVault/vaults | ||
azure.apiVersionForKeyVault=2022-07-01 | ||
# Microsoft.KeyVault/vaults/secrets | ||
azure.apiVersionForKeyVaultSecrets=2022-07-01 | ||
# Microsoft.ManagedIdentity/userAssignedIdentities | ||
azure.apiVersionForIdentity=2023-01-31 | ||
# Microsoft.Network/networkInterfaces | ||
azure.apiVersionForNetworkInterfaces=2023-11-01 | ||
# Microsoft.Network/networkSecurityGroups | ||
azure.apiVersionForNetworkSecurityGroups=2023-11-01 | ||
# Microsoft.Network/privateEndpoints | ||
azure.apiVersionForPrivateEndpoint=2023-11-01 | ||
# Microsoft.Network/publicIPAddresses | ||
azure.apiVersionForPublicIPAddresses=2023-11-01 | ||
# Microsoft.Network/applicationGateways | ||
azure.apiVersionForApplicationGateways=2023-11-01 | ||
# Microsoft.Network/dnszones | ||
azure.apiVersionForDNSZone=2023-07-01-preview | ||
# Microsoft.Network/virtualNetworks | ||
azure.apiVersionForVirtualNetworks=2023-11-01 | ||
# Microsoft.OperationalInsights/workspaces | ||
azure.apiVersionForInsightsWorkspaces=2022-10-01 | ||
# Microsoft.Resources/deploymentScripts | ||
azure.apiVersionForDeploymentScript=2023-08-01 | ||
# Microsoft.Resources/deployments | ||
azure.apiVersionForDeployment=2022-09-01 | ||
# Microsoft.Resources/tags | ||
azure.apiVersionForTags=2023-07-01 | ||
# Microsoft.Storage/storageAccounts | ||
azure.apiVersionForStorage=2023-05-01 | ||
# Microsoft.Storage/storageAccounts/fileServices | ||
azure.apiVersionForStorageFileService=2023-05-01 | ||
# Microsoft.Storage/storageAccounts/blobServices | ||
azure.apiVersionForStorageBlobService=2023-05-01 | ||
# Microsoft.RedHatOpenShift/openShiftClusters | ||
azure.apiVersionForOpenShiftClusters=2023-04-01 |