Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ARM template for Azure Active Directory

What should be the type under resources, if I want to create an ARM template for Azure Active Directory?

Is there any resources for adding User/Group/Application features in Azure Active Directory through ARM templates?

like image 313
ahq Avatar asked Apr 13 '17 07:04

ahq


People also ask

What is Azure ARM template?

What are ARM templates? ARM templates are a form of infrastructure as code, a concept where you define the infrastructure that needs to be deployed. ARM templates use declarative syntax, meaning you define the resources for Azure to deploy without specifying how the resources are created.

How do I make Azure function using ARM template?

In the Azure portal, click on create a resource, then search for Template deployment (deploy using custom templates), click on create. On the Custom deployment page, click on the link Build your own template in the editor. From there, you can copy-paste or upload your ARM template.


2 Answers

Currently, there is no way to programmatically provision an Azure Active Directory. Thus, there is also no ARM templates available for that.

You have to use either, the Graph API (REST) or a PowerShell Module like AzureAD to create User / Application for an existing AAD.

like image 101
Martin Brandl Avatar answered Nov 13 '22 02:11

Martin Brandl


I'm pretty sure there is none, looking at the Azure ARM schema I don't see anything Azure AD related. You can look at the ARM Schema here.

like image 42
4c74356b41 Avatar answered Nov 13 '22 02:11

4c74356b41