Skip to content

Commit 471cb36

Browse files
committed
add Intune Android instructions
1 parent 06ecbaa commit 471cb36

File tree

1 file changed

+59
-1
lines changed
  • src/content/docs/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/partners

1 file changed

+59
-1
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/partners/intune.mdx

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,62 @@ Intune allows you to insert [predefined variables](https://learn.microsoft.com/e
4444

4545
## Android
4646

47-
Refer to the [generic instructions for Android](/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/#android).
47+
1. Log in to your Microsoft Intune account.
48+
2. Go to **Apps** > **Android** >**Add**.
49+
3. In **App type**, select _Managed Google Play app_.
50+
4. Add the **Cloudflare One Agent** app from the Google Play store. Its application ID is `com.cloudflare.cloudflareoneagent`.
51+
5. Go to **Apps** > **App Configuration policies** > **Add**.
52+
6. Select _Managed devices_.
53+
7. In **Name**, enter `Cloudflare One Agent`.
54+
8. For **Platform**, select _Android Enterprise_.
55+
9. Choose your desired **Profile Type**.
56+
10. For **Targeted app**, select **Cloudflare One Agent**. Select **Next**.
57+
11. For **Configuration settings format**, select _Enter JSON data_. Enter your desired [deployment parameters](/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/parameters/) in the `managedProperty` field. For example:
58+
59+
```json
60+
{
61+
"kind": "androidenterprise#managedConfiguration",
62+
"productId": "app:com.cloudflare.cloudflareoneagent",
63+
"managedProperty": [
64+
{
65+
"key": "app_config_bundle_list",
66+
"valueBundleArray": [
67+
{
68+
"managedProperty": [
69+
{
70+
"key": "organization",
71+
"valueString": "your-team-name"
72+
},
73+
{
74+
"key": "service_mode",
75+
"valueString": "warp"
76+
},
77+
{
78+
"key": "onboarding",
79+
80+
"valueBool": false
81+
},
82+
{
83+
"key": "support_url",
84+
"valueString": "https://support.example.com/"
85+
}
86+
]
87+
}
88+
]
89+
}
90+
]
91+
}
92+
```
93+
94+
Alternatively, if you do not want to copy/paste the JSON data, you can change **Configuration settings format** to _Use configuration designer_ and manually configure each deployment parameter.
95+
96+
Once you have configured the deployment parameters, select **Next**.
97+
98+
12. Assign users or groups to this policy and select **Next**.
99+
13. Save the app configuration policy.
100+
14. Assign users or groups to the application:
101+
1. Go to **Apps** > **Android** > **Cloudflare One Agent** > **Manage Properties**.
102+
2. Select **Edit** and add users or groups.
103+
3. Select **Review + save** > **Save**.
104+
105+
Intune will now deploy the Cloudflare One Agent to user devices.

0 commit comments

Comments
 (0)