You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/managed-applications/deploy-service-catalog-quickstart.md
+56-19Lines changed: 56 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
---
2
-
title: Use Azure portal to deploy service catalog application
3
-
description: Shows consumers of Azure Managed Applications how to deploy a service catalog application from the Azure portal.
2
+
title: Use Azure portal to deploy service catalog managed application
3
+
description: Shows consumers of Azure Managed Applications how to deploy a service catalog managed application from the Azure portal.
4
4
author: davidsmatlak
5
5
ms.author: davidsmatlak
6
6
ms.topic: quickstart
7
7
ms.date: 08/17/2022
8
8
---
9
9
10
-
# Quickstart: Deploy service catalog application from Azure portal
10
+
# Quickstart: Deploy service catalog managed application from Azure portal
11
11
12
-
In the [preceding quickstart](publish-service-catalog-app.md), you published a managed application definition. In this quickstart, you create a service catalog application from that definition.
12
+
In the quickstart article to [publish the definition](publish-service-catalog-app.md), you published a managed application definition. In this quickstart, you use that definition to deploy a service catalog managed application. The deployment creates two resource groups. One resource group contains the managed application and the other is a managed resource group for the deployed resource. In this quickstart, you deploy a managed storage account.
13
13
14
-
## Create service catalog app
14
+
## Create service catalog managed application
15
15
16
16
In the Azure portal, use the following steps:
17
17
@@ -24,35 +24,72 @@ In the Azure portal, use the following steps:
24
24
25
25
1.**Service Catalog Managed Application** is displayed. Select **Create**.
1. The portal shows the managed application definitions that you have access to. From the available definitions, select the one you wish to deploy. In this quickstart, use the **Managed Storage Account** definition that you created in the preceding quickstart. Select **Create**.
29
+
1. The portal shows the managed application definitions that you can access. From the available definitions, select the one you want to deploy. In this quickstart, use the **Managed Storage Account** definition that you created in the preceding quickstart. Select **Create**.
30
30
31
-
:::image type="content" source="./media/deploy-service-catalog-quickstart/select-definition.png" alt-text="Select definition to deploy":::
31
+
:::image type="content" source="./media/deploy-service-catalog-quickstart/select-service-catalog-managed-application.png" alt-text="Screenshot that shows managed application definitions that you can select and deploy.":::
32
32
33
-
1. Provide values for the **Basics** tab. Select the Azure subscription to deploy your service catalog app to. Create a new resource group named **applicationGroup**. Select a location for your app. When finished, select **OK**.
33
+
1. Provide values for the **Basics** tab and select **Next: Storage settings**.
34
34
35
-
:::image type="content" source="./media/deploy-service-catalog-quickstart/provide-basics.png" alt-text="Provide values for basic":::
35
+
:::image type="content" source="./media/deploy-service-catalog-quickstart/basics-info.png" alt-text="Screenshot that highlights the information needed on the basics tab.":::
36
36
37
-
1. Provide a prefix for the storage account name. Select the type of storage account to create. When finished, select **OK**.
37
+
-**Subscription**: Select the subscription where you want to deploy the managed application.
38
+
-**Resource group**: Select the resource group. For this example, create a resource group named _applicationGroup_.
39
+
-**Region**: Select the location where you want to deploy the resource.
40
+
-**Application Name**: Enter a name for your application. For this example, use _demoManagedApplication_.
41
+
-**Managed Resource Group**: Uses a default with the prefix **mrg-{defintionname}-{datetime}** like _mrg-ManagedStorage-20220817122721_. You can change the name.
38
42
39
-
:::image type="content" source="./media/deploy-service-catalog-quickstart/provide-storage.png" alt-text="Provide values for storage":::
43
+
1. Enter a prefix for the storage account name and select the storage account type. Select **Next: Review + create**.
40
44
41
-
1. Review the summary. After validation succeeds, select **OK**to begin deployment.
45
+
:::image type="content" source="./media/deploy-service-catalog-quickstart/storage-info.png" alt-text="Screenshot that shows the information needed to create a storage account.":::
-**Storage account name prefix**: Use only lowercase letters and numbers and a maximum of 11 characters. During deployment, the prefix is concatenated with a unique string to create the storage account name.
48
+
-**Storage account type**: Select **Change type** to choose a storage account type. The default is Standard LRS.
49
+
50
+
1. Review the summary of the values you selected and verify **Validation Passed** is displayed. Select **Create** to begin the deployment.
51
+
52
+
:::image type="content" source="./media/deploy-service-catalog-quickstart/summary-validation.png" alt-text="Screenshot that summarizes the values you selected and shows the validation status.":::
44
53
45
54
## View results
46
55
47
-
After the service catalog app has been deployed, you have two new resource groups. One resource group holds the service catalog app. The other resource group holds the resources for the service catalog app.
56
+
After the service catalog managed application is deployed, you have two new resource groups. One resource group contains the managed application. The other resource group contains the managed resource that was deployed. In this example, a managed storage account.
57
+
58
+
### Managed application
59
+
60
+
Go to the resource group named **applicationGroup**. The resource group contains your managed application named _demoManagedApplication_.
61
+
62
+
:::image type="content" source="./media/deploy-service-catalog-quickstart/view-application-group.png" alt-text="Screenshot that shows the resource group that contains the managed application.":::
63
+
64
+
### Managed resource
65
+
66
+
Go to the managed resource group with the name prefix **mrg-ManagedStorage** to see the resource that was deployed. The resource group contains the managed storage account that uses the prefix you specified. In this example, the storage account prefix is _demoappstg_.
67
+
68
+
:::image type="content" source="./media/deploy-service-catalog-quickstart/view-managed-resource-group.png" alt-text="Screenshot that shows the managed resource group that contains the resource deployed by the managed application.":::
69
+
70
+
The storage account that's created by the managed application has a role assignment. In the [previous quickstart](/publish-service-catalog-app.md#create-an-azure-active-directory-user-group-or-application), you created an Azure Active Directory group. That group was used in the managed application definition. When you deployed the managed application, a role assignment for that group was added to the managed storage account.
71
+
72
+
To see the role assignment from the Azure portal:
73
+
74
+
1. Go to the **mrg-ManagedStorage** resource group.
75
+
1. Select **Access Control (IAM)** > **Role assignments**.
76
+
77
+
You can also view the resource's **Deny assignments**.
78
+
79
+
The role assignment gives the application's publisher access to manage the storage account. In this example, the publisher might be your IT department. The _Deny assignments_ prevents customers from making changes to a managed resource's configuration. Managed apps are designed so that customers don't need to maintain the resources. The _Deny assignment_ excludes the Azure Active Directory group that was assigned in **Role assignments**.
80
+
81
+
## Clean up resources
48
82
49
-
1. View the resource group named **applicationGroup** to see the service catalog app.
83
+
When your finished with the managed application, you can delete the resource groups and that will remove all the resources you created. For example, in this quickstart you created the resource groups _applicationGroup_ and a managed resource group with the prefix _mrg-ManagedStorage_.
1. From Azure portal **Home**, in the search field, enter _resource groups_.
86
+
1. Select **Resource groups**.
87
+
1. Select **applicationGroup** and **Delete resource group**.
88
+
1. To confirm the deletion, enter the resource group name and select **Delete**.
52
89
53
-
1. View the resource group named **applicationGroup{hash-characters}** to see the resources for the service catalog app.
90
+
When the resource group that contains the managed application is deleted, the managed resource group is also deleted. In this example, when _applicationGroup_ is deleted the _mrg-ManagedStorage_ resource group is also deleted.
If you want to delete the managed application definition, you can delete the resource groups you created in the quickstart to [publish the definition](publish-service-catalog-app.md).
0 commit comments