From 216be57980fd4fc88c0fb7659e8b6bb249229bac Mon Sep 17 00:00:00 2001
From: Heikki <33450215+hkortti@users.noreply.github.com>
Date: Wed, 21 Aug 2024 15:40:14 +0300
Subject: [PATCH 1/3] Update azure.md
Added sections to resolve issue #88
---
docs/apps/azure.md | 34 ++++++++++++++++++++++++++++++----
1 file changed, 30 insertions(+), 4 deletions(-)
diff --git a/docs/apps/azure.md b/docs/apps/azure.md
index 33d989c7..0646413e 100644
--- a/docs/apps/azure.md
+++ b/docs/apps/azure.md
@@ -76,6 +76,10 @@ Note that installing Azure CLI to your computer is outside of the scope of this
```
az ad sp create-for-rbac --role "Reader" --scopes /subscriptions/{subscription_id1} /subscriptions/{subscription_id2} --name http://BadrapAzureApp
```
+ If you are using management groups and want to add access to all subscriptions under a management group, you can do it like this:
+ ```
+ az ad sp create-for-rbac --role "Reader" --scopes /providers/Microsoft.Management/managementGroups/{managementGroup_id} --name http://BadrapAzureApp
+ ```
If you want to restrict the permissions of the service principal even further, instead of the default Reader role you can create a custom role and assign it to the service principal. The custom role needs to have permissions to only a few resources. First, create the service principal without assigning any role to it.
```
az ad sp create-for-rbac --skip-assignment --scopes /subscriptions/{subscription_id} --name http://BadrapAzureApp
@@ -98,22 +102,44 @@ Note that installing Azure CLI to your computer is outside of the scope of this
"NotDataActions": []
}'
```
- Lastly, assign the custom role to the service principal you created earlier:
+ Assign the custom role to the service principal you created earlier:
```
az role assignment create --role "CustomReaderBadrapApp" --assignee http://BadrapAzureApp --scope /subscriptions/{subscription_id}
```
+ If you are using management groups and want to assign a custom role to all subscriptions under a management group, create a custom role that looks like this:
+ ```
+ az role definition create --role-definition '{
+ "Name": "CustomReaderBadrapApp",
+ "Description": "Custom restricted Reader role for Badrap Azure app",
+ "AssignableScopes": [
+ "/providers/Microsoft.Management/managementGroups/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
+ ],
+ "Actions": [
+ "Microsoft.Network/publicIPAddresses/read",
+ "Microsoft.Network/dnszones/read",
+ "Microsoft.Network/dnszones/all/read"
+ ],
+ "NotActions": [],
+ "DataActions": [],
+ "NotDataActions": []
+ }'
+ ```
+ Then, assign the custom role to the management group:
+ ```
+ az role assignment create --role "CustomReaderBadrapApp" --assignee http://BadrapAzureApp --scope /providers/Microsoft.Management/managementGroups/{managementGroupId}
+ ```
-4. Under your Badrap Azure app settings, add your account details.
+5. Under your Badrap Azure app settings, add your account details.
-5. Copy the **tenant**, **appId** and **password** values into the app settings:
+6. Copy the **tenant**, **appId** and **password** values into the app settings:
* Tenant ID: `tenant`
* Application ID: `appId`
* Client Secret: `password`
-6. In a few minutes after the Badrap Azure app has been configured into use, you should see a listing of your Azure assets under [My Assets](https://badrap.io/assets).
+7. In a few minutes after the Badrap Azure app has been configured into use, you should see a listing of your Azure assets under [My Assets](https://badrap.io/assets).
From b8ca4576952d9bc86a2917944a1d8f6061a114dc Mon Sep 17 00:00:00 2001
From: Heikki <33450215+hkortti@users.noreply.github.com>
Date: Wed, 21 Aug 2024 16:15:08 +0300
Subject: [PATCH 2/3] Update azure.md
Separated management group instructions into their own section under the Azure CLI instructions.
---
docs/apps/azure.md | 51 +++++++++++++++++++++++++++++++++-------------
1 file changed, 37 insertions(+), 14 deletions(-)
diff --git a/docs/apps/azure.md b/docs/apps/azure.md
index 0646413e..2dcbc39b 100644
--- a/docs/apps/azure.md
+++ b/docs/apps/azure.md
@@ -26,12 +26,16 @@ Anyone can install the Azure app in Badrap, but you will need Global Administrat
Note that installing Azure CLI to your computer is outside of the scope of this guide. You can use [Microsoft's Azure CLI installation instructions](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli) to get started if you haven't installed it previously.
-1. Log into Azure using your Azure CLI utility.
+3. To get started, log into Azure using your Azure CLI utility.
```
az login
```
-2. List your subscription details:
+### Adding access to one or several Azure subscriptions individually
+
+We'll cover first the case where you want to integrate the Badrap Azure app into to one or more Azure subscriptions individually. If you are using Azure Management Groups to manage access for multiple subscriptions, please refer to the next section instead.
+
+4. List your subscription details:
```
az account show
```
@@ -54,11 +58,11 @@ Note that installing Azure CLI to your computer is outside of the scope of this
```
Make a note of the **id** field value (subscription ID) for the next step. If you want to add multiple subscriptions, make a note of all of their IDs.
-3. Use the `az ad sp` command to create an application as a service principal with Reader role privileges. Substitute `{subscription_id}` in the example below with the **id** value you noted down previously. Note that the `--name` parameter is optional and you can define any name you want for the service principal.
+5. Use the `az ad sp` command to create an application as a service principal with Reader role privileges. Substitute `{subscription_id}` in the example below with the **id** value you noted down previously. Note that the `--name` parameter is optional and you can define any name you want for the service principal.
```
az ad sp create-for-rbac --role "Reader" --scopes /subscriptions/{subscription_id} --name http://BadrapAzureApp
```
- The output will look like this:
+ The output will look like this. Note down the **appId**, **tenant** and **password** values to be used for configuring the Badrap Azure app.
```
Creating 'Reader' role assignment under scope '/subscriptions/11111111-2222-3333-4444-555555666666'
Retrying role assignment creation: 1/36
@@ -76,10 +80,6 @@ Note that installing Azure CLI to your computer is outside of the scope of this
```
az ad sp create-for-rbac --role "Reader" --scopes /subscriptions/{subscription_id1} /subscriptions/{subscription_id2} --name http://BadrapAzureApp
```
- If you are using management groups and want to add access to all subscriptions under a management group, you can do it like this:
- ```
- az ad sp create-for-rbac --role "Reader" --scopes /providers/Microsoft.Management/managementGroups/{managementGroup_id} --name http://BadrapAzureApp
- ```
If you want to restrict the permissions of the service principal even further, instead of the default Reader role you can create a custom role and assign it to the service principal. The custom role needs to have permissions to only a few resources. First, create the service principal without assigning any role to it.
```
az ad sp create-for-rbac --skip-assignment --scopes /subscriptions/{subscription_id} --name http://BadrapAzureApp
@@ -106,13 +106,34 @@ Note that installing Azure CLI to your computer is outside of the scope of this
```
az role assignment create --role "CustomReaderBadrapApp" --assignee http://BadrapAzureApp --scope /subscriptions/{subscription_id}
```
- If you are using management groups and want to assign a custom role to all subscriptions under a management group, create a custom role that looks like this:
+
+### Add access to subscriptions managed with a management group
+
+Use this section if you are using Azure management groups to manage multiple subscriptions, and you want to allow Badrap Azure app access to all subscriptions under a single management group.
+
+4. List your management group details:
+ ```
+ az account management-group show
+ ```
+ Make a note of the management group ID you want to use for access.
+
+5. Use the `az ad sp` command to create an application as a service principal with Reader role privileges. Substitute `{managementGroup_id}` in the example below with the **id** value you noted down previously. Note that the `--name` parameter is optional and you can define any name you want for the service principal.
+ ```
+ az ad sp create-for-rbac --role "Reader" --scopes /providers/Microsoft.Management/managementGroups/{managementGroup_id} --name http://BadrapAzureApp
+ ```
+ Note down the **appId**, **tenant** and **password** values to be used for configuring the Badrap Azure app.
+
+ If you want to restrict the permissions of the service principal even further, instead of the default Reader role you can create a custom role and assign it to the service principal. The custom role needs to have permissions to only a few resources. First, create a service principal without assigning any role to it:
+ ```
+ az ad sp create-for-rbac --skip-assignment --scopes /providers/Microsoft.Management/managementGroups/{managementGroup_Id} --name http://BadrapAzureApp
+ ```
+ Then, create your custom role with only minimal privileges:
```
az role definition create --role-definition '{
"Name": "CustomReaderBadrapApp",
"Description": "Custom restricted Reader role for Badrap Azure app",
"AssignableScopes": [
- "/providers/Microsoft.Management/managementGroups/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
+ "/providers/Microsoft.Management/managementGroups/{managementgroup_Id}"
],
"Actions": [
"Microsoft.Network/publicIPAddresses/read",
@@ -126,20 +147,22 @@ Note that installing Azure CLI to your computer is outside of the scope of this
```
Then, assign the custom role to the management group:
```
- az role assignment create --role "CustomReaderBadrapApp" --assignee http://BadrapAzureApp --scope /providers/Microsoft.Management/managementGroups/{managementGroupId}
+ az role assignment create --role "CustomReaderBadrapApp" --assignee http://BadrapAzureApp --scope /providers/Microsoft.Management/managementGroups/{managementGroup_Id}
```
-5. Under your Badrap Azure app settings, add your account details.
+### Provide Azure access details for Badrap Azure app
+
+6. Under your Badrap Azure app settings, add your account details.
-6. Copy the **tenant**, **appId** and **password** values into the app settings:
+7. Copy the **tenant**, **appId** and **password** values into the app settings:
* Tenant ID: `tenant`
* Application ID: `appId`
* Client Secret: `password`
-7. In a few minutes after the Badrap Azure app has been configured into use, you should see a listing of your Azure assets under [My Assets](https://badrap.io/assets).
+8. In a few minutes after the Badrap Azure app has been configured into use, you should see a listing of your Azure assets under [My Assets](https://badrap.io/assets).
From 93fb087494d87e83e41649d1696772b09317c529 Mon Sep 17 00:00:00 2001
From: Heikki <33450215+hkortti@users.noreply.github.com>
Date: Wed, 21 Aug 2024 16:38:42 +0300
Subject: [PATCH 3/3] Update azure.md
Use "az account management-group list" instead of "az account management-group show"
---
docs/apps/azure.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/apps/azure.md b/docs/apps/azure.md
index 2dcbc39b..cb3f2667 100644
--- a/docs/apps/azure.md
+++ b/docs/apps/azure.md
@@ -113,11 +113,11 @@ Use this section if you are using Azure management groups to manage multiple sub
4. List your management group details:
```
- az account management-group show
+ az account management-group list
```
Make a note of the management group ID you want to use for access.
-5. Use the `az ad sp` command to create an application as a service principal with Reader role privileges. Substitute `{managementGroup_id}` in the example below with the **id** value you noted down previously. Note that the `--name` parameter is optional and you can define any name you want for the service principal.
+5. Use the `az ad sp` command to create an application as a service principal with Reader role privileges. Substitute `{managementGroup_id}` in the example below with the management group ID you noted down previously. Note that the `--name` parameter is optional and you can define any name you want for the service principal.
```
az ad sp create-for-rbac --role "Reader" --scopes /providers/Microsoft.Management/managementGroups/{managementGroup_id} --name http://BadrapAzureApp
```