elisa anzelmo
elisa anzelmo

Reputation: 13

Needed support for "Configure backup on virtual machines with a given tag..." policy not supporting SQL *-WS2022 O.S. version

Azure built-in Policy "Configure backup on virtual machines with a given tag to an existing recovery services vault in the same location" doesn't support SQL *-WS2022 O.S. version. Evaluation condition is the following actually

  {
    "anyOf": [
    {
       "field": "Microsoft.Compute/imageOffer",
       "like": "*-WS2019"
    },
    {
      "field": "Microsoft.Compute/imageOffer",
      "like": "*-WS2016"
    },
    {
     "field": "Microsoft.Compute/imageOffer",
     "like": "*-WS2016-BYOL"
    },
    {
       "field": "Microsoft.Compute/imageOffer",
       "like": "*-WS2012R2"
    },
    {
       "field": "Microsoft.Compute/imageOffer",
       "like": "*-WS2012R2-BYOL"
    }
    ]
  }

I know i can create a custom policy and add the support of the new O.S. version.

But the question from the customer is:

expecting info about where to gather Azure policies roadmap

Upvotes: 1

Views: 43

Answers (1)

VivekAnandChakravarthy
VivekAnandChakravarthy

Reputation: 729

where i can get a roadmap of the Azure built-in policies planned updates?

I hope this is the only site for the Azure Updates or roadmap on all categories based on my experience.

As I can see in one of the Tech Community MS article, they have mentioned whatever the key features and services that are published as updated with these 3 statuses: launched, in development and in preview.

enter image description here

If you want updates on specific category such as Azure Policy, you can filter by Product Category on the given dropdown or search with that tag or keyword to get the relevant information:

enter image description here

enter image description here

enter image description here

If you want immediate updates, you can subscribe to Azure Roadmap also

Upvotes: 0

Related Questions