How to add Azure Mobile Service to Azure Resource Manager template? - azure

How can I add an Azure Mobile Service to an Azure Resource Manager template? I cannot find any online templates nor guidance to do this. I cannot migrate to Azure App Service just yet, and MS claims that Azure Mobile Services remain fully supported.

Mobile Services are only supported in the Service Management API (ASM), not in Resource Manager.

Related

My Dashboard in Azure for App Services outage

I am working on a custom Dashboard in Azure. My Application is hosted in an APp Service. If App services is down at Microsoft end, i want to show a Red Dot in my dashboard.
KUSTO will work here?
Some API calls i need to do and some Programming to create dashboard?
Please guide me
You can create the Azure dashboard using template deployment in which Azure offers the ability to orchestrate the deployment of multiple resources.
Once the required resources for Azure Dashboard can be configured in template ARM template format, you can deploy using REST APIs, PowerShell, Azure CLI and Azure Portal template deployment.
This Microsoft Documentation helps you to create the Azure Dashboard using the Sample Templates given.
You can enable Health checks for your App Service using Azure Monitor App and that you can bring on Azure Dashboard to see your app service is up or down in the form of graph.
Source: Azure Service Health Dashboard

Is there a list of Azure services supported by Azure Resource Manager?

Is there a list of Azure services that can be initiated by Azure Resource Manager templates?
And are there sample templates available?
Is there a list of Azure services that can be initiated by Azure
Resource Manager templates?
Almost every service in Azure can be initiated by ARM templates. Only exceptions are the services that have "Classic" in their name (Classic Storage Account, Classic Cloud Service for example).
And are there sample templates available?
You can find the sample templates (at least the schema and some quick start templates) for all Azure Services here: https://learn.microsoft.com/en-us/azure/templates/.

For Azure API Management - Consumption SKU does it support integration with Azure DevOps through Service Principles

I have attempted to connect a service principle through azure devops using powershell scripts to deploy apis and manage updates on Azure APIM (Consumption SKU) and I get authorization failures. I have checked the service principle and the permissions associated with the resource group for the apim and everything appears to be correct. I am able to do this using the Developer SKU of the Azure APIM without issue but I am wondering if this is a limitation of the Consumption SKU
Use powershell to connect service principle is related to Azure AD authentication. But you can refer to this tutorial, it shows us APIM in Consumption SKU doesn't support Azure AD integration.
Found the issue was a malformed resource group name in the url posted. Resolved that and the Azure DevOps integration worked as expected.

Not able to see Live Streaming channel in Azure Portal if created from .NET SDK Service Principal account

I am not able to see Live Streaming channel in Azure Portal if created from .NET SDK Service Principal account. I am the Account Admin as well as "Owner" for the subscription as well as the same Media Service resource. If I create it from Portal I can see it. But, if created programmatically with SP account, not able to see it in Portal.
I have followed the sample from this link,
https://learn.microsoft.com/en-us/azure/media-services/latest/stream-live-tutorial-with-api
Thanks,
Avi
Based on the sample you linked to you are using the V3 API for Azure Media Services. Currently, you cannot use the Azure Portal to manage V3 resources. If you need a UX for managing V3 resources you can use the Azure Media Services Explorer for V3 which is available from github here. We are working on updating the Azure Portal to support resources created with V3 API. The following link provides details on differences between using v2 and v3 APIs. The Azure Portal only currently supports the v2 APIs.

Deploy Azure Cloud Service using Azure Automation Powershell DSC

We are using Azure Automation DSC and were able to do simple things like create Automation account, create Resource group, VM creation and even able to deploy a web site on the target VM. All using powershell scripting.
How can we deploy Azure Cloud Services (web role / worker role)? what are the cmdlets? Any pointers? Please help.
What more things can be achieved using this? Moreover what limitations we can expect here.
Best Regards
Azure DSC is really focused on Azure's Infrastructure as a Service (IaaS) offering. Basically you can configure virtual servers (Windows and Linux) hosted on Azure.
To manage configurations for other services in Azure it is recommended to utilize Azure Resource Manager (ARM) which will allow you to define and configure Azure services in JSON.
Microsoft offers a lot of Quick Start ARM templates that can be accessed at the Azure Quickstart site.

Resources