Facing error while trying to deploy custom ARM templates in Azure

Anand R Menon 286 Reputation points
2021-09-29T15:18:50.193+00:00

I'm facing an error while trying to deploy custom ARM templates in Azure.

"message": "Pricing tier doesn't match the subscription's billing model. Read http://aka.ms/PricingTierWarning
for more details."

I'm doing this as part of Azure Sentinel training, part of SC-200 exam. I have a Pay-As-You-Go Azure subscription now.

Found this error reported previously online but couldn't figure out how to fix this issue from the solutions provided as some options have changed in Azure since those questions were posted.

Including the screenshot for your reference. Please help on this issue.

136315-azure-arm-error.png

Microsoft Sentinel
Microsoft Sentinel
A scalable, cloud-native solution for security information event management and security orchestration automated response. Previously known as Azure Sentinel.
987 questions
0 comments No comments
{count} votes

Accepted answer
  1. Marilee Turscak-MSFT 34,061 Reputation points Microsoft Employee
    2021-09-29T23:50:29.453+00:00

    This can happen if the wrong SKU is mentioned in the ARM template. In this thread, users were able to fix this by selecting the right service plan SKU for their LogAnalytics Workspace (changed from Free to pergb2018).

    "location": "[resourceGroup().location]",
          "properties": {
            "sku": {
              "name": "pergb2018"
            }
          }
        },
    

    Which guide are you following for this?

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful