Configure Azure DNS
Azure is natively supported through Cloud Integration. An Azure or Azure Government subscription may be added with the Configure Cloud Service Account Wizard (see Configure Cloud Integration) in the Management Console.
Prerequisites
Central and the DNS Controller on the same machine must be able to connect to Azure services. Specifically, the following URLs:
An Azure service principal that can access Azure resources that should be managed through Micetro. Add the following built-in Azure roles on the subscription or specific resource groups you want to manage:
DNS Zone Contributor
Network Contributor
Getting the service principal details
Detailed instructions on how to create a service principal and retrieve the Tenant ID, Subscription ID, Client ID (also known as Application ID), and the Client Secret (also known as authentication key), can be found here: https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal
Frequently asked questions (FAQ)
Can I configure a proxy for the connection to Azure services?
This feature is currently not available.
What are the minimum permissions required for Micetro to integrate fully with Azure?
Below is a custom role definition that covers all the required permissions for DNS and IPAM. Please look at Azure documentation on how to create a custom role.
1{
2"Name": "Men&Mice Operator",
3"IsCustom": true,
4"Description": "Can manage DNS and IPAM related resources.",
5"Actions": [
6 "Microsoft.Network/dnsZones/*",
7 "Microsoft.Network/virtualNetworks/read",
8 "Microsoft.Network/virtualNetworks/write",
9 "Microsoft.Network/virtualNetworks/delete",
10 "Microsoft.Network/virtualNetworks/subnets/read",
11 "Microsoft.Network/virtualNetworks/subnets/write",
12 "Microsoft.Network/virtualNetworks/subnets/delete",
13 "Microsoft.Compute/virtualMachines/read",
14 "Microsoft.Compute/virtualMachines/instanceView/read",
15 "Microsoft.Network/networkInterfaces/ipConfigurations/read",
16 "Microsoft.Resources/subscriptions/resourceGroups/read"
17 ],
18"AssignableScopes": [
19 "/subscriptions/<your subscription id or specify a more granular scope>"
20 ]
21}