Skip to content

Commit e583569

Browse files
committed
updates content and images
1 parent 69260b3 commit e583569

14 files changed

+56
-19
lines changed

articles/azure-resource-manager/managed-applications/deploy-service-catalog-quickstart.md

Lines changed: 56 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
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.
44
author: davidsmatlak
55
ms.author: davidsmatlak
66
ms.topic: quickstart
77
ms.date: 08/17/2022
88
---
99

10-
# Quickstart: Deploy service catalog application from Azure portal
10+
# Quickstart: Deploy service catalog managed application from Azure portal
1111

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.
1313

14-
## Create service catalog app
14+
## Create service catalog managed application
1515

1616
In the Azure portal, use the following steps:
1717

@@ -24,35 +24,72 @@ In the Azure portal, use the following steps:
2424

2525
1. **Service Catalog Managed Application** is displayed. Select **Create**.
2626

27-
:::image type="content" source="./media/deploy-service-catalog-quickstart/create-service-catalog-managed-app.png" alt-text="Select create":::
27+
:::image type="content" source="./media/deploy-service-catalog-quickstart/create-service-catalog-managed-application.png" alt-text="Select create":::
2828

29-
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**.
3030

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.":::
3232

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**.
3434

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.":::
3636

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.
3842

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**.
4044

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.":::
4246

43-
:::image type="content" source="./media/deploy-service-catalog-quickstart/view-summary.png" alt-text="View summary":::
47+
- **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.":::
4453

4554
## View results
4655

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
4882

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_.
5084

51-
:::image type="content" source="./media/deploy-service-catalog-quickstart/view-managed-application.png" alt-text="View application":::
85+
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**.
5289

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.
5491

55-
:::image type="content" source="./media/deploy-service-catalog-quickstart/view-resources.png" alt-text="View resources":::
92+
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).
5693

5794
## Next steps
5895

30.8 KB
Loading
Loading
10.8 KB
Loading
Loading
Loading

0 commit comments

Comments
 (0)