Skip to content

Commit 81bb695

Browse files
committed
edits content and updates screenshots
1 parent f685368 commit 81bb695

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
title: Deploy a service catalog managed application
3-
description: Shows consumers of Azure Managed Applications how to deploy a service catalog managed application.
3+
description: Describes how to deploy a service catalog's managed application for an Azure Managed Application.
44
author: davidsmatlak
55
ms.author: davidsmatlak
66
ms.topic: quickstart
77
ms.date: 03/01/2023
88
---
99

10-
# Quickstart: Deploy service catalog managed application
10+
# Quickstart: Deploy a service catalog managed application
1111

1212
In this quickstart, you use the definition you created in the quickstarts to [publish an application definition](publish-service-catalog-app.md) or [publish a definition with bring your own storage](publish-service-catalog-bring-your-own-storage.md) 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. The managed application definition deploys an App Service plan, App Service, and storage account.
1313

1414
## Prerequisites
1515

16-
To complete this quickstart, you need an Azure account with an active subscription. If you completed the quickstart to publish a definition, you should already have an account. Otherwise, [create a free account](https://azure.microsoft.com/free/) before you begin.
16+
To complete this quickstart, you need an Azure account with an active subscription. If you completed a quickstart to publish a definition, you should already have an account. Otherwise, [create a free account](https://azure.microsoft.com/free/) before you begin.
1717

1818
## Create service catalog managed application
1919

@@ -70,21 +70,21 @@ After the service catalog managed application is deployed, you have two new reso
7070

7171
### Managed application
7272

73-
Go to the resource group named **applicationGroup**. The resource group contains your managed application named _demoManagedApplication_.
73+
Go to the resource group named **applicationGroup** and select **Overview**. The resource group contains your managed application named _demoManagedApplication_.
7474

7575
:::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.":::
7676

77-
Select the managed application's name to get more information like a link to the managed resource group.
77+
Select the managed application's name to get more information like the link to the managed resource group.
7878

7979
:::image type="content" source="./media/deploy-service-catalog-quickstart/view-managed-application.png" alt-text="Screenshot that shows the managed application's details and highlights the link to the managed resource group.":::
8080

8181
### Managed resource
8282

83-
Go to the managed resource group with the name prefix **rg-sampleManagedApplication** to display the resources that were deployed. The resource group contains an App Service plan, App Service, and storage account.
83+
Go to the managed resource group with the name prefix **rg-sampleManagedApplication** and select **Overview** to display the resources that were deployed. The resource group contains an App Service, App Service plan, and storage account.
8484

8585
:::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 resources deployed by the managed application definition.":::
8686

87-
The managed resource group and each resource that's created by the managed application has a role assignment. In the [publish the definition](publish-service-catalog-app.md#get-group-id-and-role-definition-id) article, 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 resources.
87+
The managed resource group and each resource created by the managed application has a role assignment. When you used a quickstart article to create the definition, 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 resources.
8888

8989
To see the role assignment from the Azure portal:
9090

@@ -113,5 +113,5 @@ If you want to delete the managed application definition, delete the resource gr
113113

114114
## Next steps
115115

116-
- To learn how to create the definition files for a managed application, go to [Quickstart: Create and publish an Azure Managed Application definition](publish-service-catalog-app.md).
117-
- To create the definition files for a managed application using your own storage, go to [Quickstart: Bring your own storage to publish an Azure Managed Application definition](publish-service-catalog-bring-your-own-storage.md).
116+
- To learn how to create and publish the definition files for a managed application, go to [Quickstart: Create and publish an Azure Managed Application definition](publish-service-catalog-app.md).
117+
- To use your own storage to create and publish the definition files for a managed application, go to [Quickstart: Bring your own storage to create and publish an Azure Managed Application definition](publish-service-catalog-bring-your-own-storage.md).
-680 Bytes
Loading
Loading
Loading
Loading
-76 Bytes
Loading

articles/azure-resource-manager/managed-applications/publish-service-catalog-app.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Publish Azure Managed Application in service catalog
3-
description: Describes how to publish an Azure Managed Application in your service catalog that's intended for members of your organization.
2+
title: Create and publish Azure Managed Application in service catalog
3+
description: Describes how to create and publish an Azure Managed Application in your service catalog that's intended for members of your organization.
44
author: davidsmatlak
55
ms.author: davidsmatlak
66
ms.topic: quickstart
@@ -10,13 +10,13 @@ ms.date: 03/01/2023
1010

1111
# Quickstart: Create and publish an Azure Managed Application definition
1212

13-
This quickstart provides an introduction to working with [Azure Managed Applications](overview.md). You create and publish a managed application that's stored in your service catalog and is intended for members of your organization.
13+
This quickstart provides an introduction to working with [Azure Managed Applications](overview.md). You create and publish a managed application definition that's stored in your service catalog and is intended for members of your organization.
1414

1515
To publish a managed application to your service catalog, do the following tasks:
1616

1717
- Create an Azure Resource Manager template (ARM template) that defines the resources to deploy with the managed application.
1818
- Define the user interface elements for the portal when deploying the managed application.
19-
-Create a _.zip_ package that contains the required JSON files. The _.zip_ package file has a 120-MB limit for a service catalog's managed application definition.
19+
- Create a _.zip_ package that contains the required JSON files. The _.zip_ package file has a 120-MB limit for a service catalog's managed application definition.
2020
- Deploy the managed application definition so it's available in your service catalog.
2121

2222
If your managed application definition is more than 120 MB or if you want to use your own storage account for your organization's compliance reasons, go to [Quickstart: Bring your own storage to create and publish an Azure Managed Application definition](publish-service-catalog-bring-your-own-storage.md).
@@ -158,7 +158,7 @@ Add the following JSON and save the file. It defines the resources to deploy an
158158

159159
As a publisher, you define the portal experience to create the managed application. The _createUiDefinition.json_ file generates the portal's user interface. You define how users provide input for each parameter using [control elements](create-uidefinition-elements.md) like drop-downs and text boxes.
160160

161-
Open Visual Studio Code, create a file with the case-sensitive name _createUiDefinition.json_ and save it. The user interface allows the user to input the App Service name, App Service plan's name, storage account prefix, and storage account type. During deployment, the `uniqueString` function appends a 13 character string to the name prefixes so the names are globally unique across Azure.
161+
Open Visual Studio Code, create a file with the case-sensitive name _createUiDefinition.json_ and save it. The user interface allows the user to input the App Service name prefix, App Service plan's name, storage account prefix, and storage account type. During deployment, the variables in _mainTemplate.json_ use the `uniqueString` function to append a 13-character string to the name prefixes so the names are globally unique across Azure.
162162

163163
Add the following JSON to the file and save it.
164164

@@ -324,13 +324,13 @@ For more information about storage authentication, see [Choose how to authorize
324324

325325
## Create the managed application definition
326326

327-
In this section you'll get identity information from Azure Active Directory, create a resource group, and create the managed application definition.
327+
In this section you get identity information from Azure Active Directory, create a resource group, and create the managed application definition.
328328

329329
### Get group ID and role definition ID
330330

331331
The next step is to select a user, security group, or application for managing the resources for the customer. This identity has permissions on the managed resource group according to the assigned role. The role can be any Azure built-in role like Owner or Contributor.
332332

333-
This example uses a security group, and your Azure Active Directory account should be a member of the group. To get the group's object ID, replace the placeholder `managedAppDemo` with your group's name. You'll use this variable's value when you deploy the managed application definition.
333+
This example uses a security group, and your Azure Active Directory account should be a member of the group. To get the group's object ID, replace the placeholder `managedAppDemo` with your group's name. You use this variable's value when you deploy the managed application definition.
334334

335335
To create a new Azure Active Directory group, go to [Manage Azure Active Directory groups and group membership](../../active-directory/fundamentals/how-to-manage-groups.md).
336336

@@ -348,7 +348,7 @@ principalid=$(az ad group show --group managedAppDemo --query id --output tsv)
348348

349349
---
350350

351-
Next, get the role definition ID of the Azure built-in role you want to grant access to the user, group, or application. You'll use this variable's value when you deploy the managed application definition.
351+
Next, get the role definition ID of the Azure built-in role you want to grant access to the user, group, or application. You use this variable's value when you deploy the managed application definition.
352352

353353
# [PowerShell](#tab/azure-powershell)
354354

@@ -448,4 +448,4 @@ You have access to the managed application definition, but you want to make sure
448448
You've published the managed application definition. Now, learn how to deploy an instance of that definition.
449449

450450
> [!div class="nextstepaction"]
451-
> [Quickstart: Deploy service catalog managed application](deploy-service-catalog-quickstart.md)
451+
> [Quickstart: Deploy a service catalog managed application](deploy-service-catalog-quickstart.md)

articles/azure-resource-manager/managed-applications/publish-service-catalog-bring-your-own-storage.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: Bring your own storage to publish an Azure Managed Application definition
3-
description: Describes how to bring your own storage to publish an Azure Managed Application definition in your service catalog.
2+
title: Bring your own storage to create and publish an Azure Managed Application definition
3+
description: Describes how to bring your own storage to create and publish an Azure Managed Application definition in your service catalog.
44
author: davidsmatlak
55
ms.author: davidsmatlak
66
ms.topic: quickstart
77
ms.custom: subject-armqs, devx-track-azurecli, devx-track-azurepowershell, subject-rbac-steps, mode-api, mode-arm
88
ms.date: 03/01/2023
99
---
1010

11-
# Quickstart: Bring your own storage to publish an Azure Managed Application definition
11+
# Quickstart: Bring your own storage to create and publish an Azure Managed Application definition
1212

1313
This quickstart provides an introduction to bring your own storage (BYOS) for an [Azure Managed Application](overview.md). You create and publish a managed application definition in your service catalog for members of your organization. When you use your own storage account, your managed application definition can exceed the service catalog's 120-MB limit.
1414

@@ -159,7 +159,7 @@ Add the following JSON and save the file. It defines the managed application's r
159159

160160
As a publisher, you define the portal experience to create the managed application. The _createUiDefinition.json_ file generates the portal's user interface. You define how users provide input for each parameter using [control elements](create-uidefinition-elements.md) like drop-downs and text boxes.
161161

162-
Open Visual Studio Code, create a file with the case-sensitive name _createUiDefinition.json_ and save it. The user interface allows the user to input the App Service name, App Service plan's name, storage account prefix, and storage account type. During deployment, the `uniqueString` function appends a 13 character string to the name prefixes so the names are globally unique across Azure.
162+
Open Visual Studio Code, create a file with the case-sensitive name _createUiDefinition.json_ and save it. The user interface allows the user to input the App Service name prefix, App Service plan's name, storage account prefix, and storage account type. During deployment, the variables in _mainTemplate.json_ use the `uniqueString` function to append a 13-character string to the name prefixes so the names are globally unique across Azure.
163163

164164
Add the following JSON to the file and save it.
165165

@@ -466,7 +466,7 @@ roleid=$(az role definition list --name Owner --query [].name --output tsv)
466466

467467
## Create the definition deployment template
468468

469-
Use a Bicep file to deploy the managed application definition in your service catalog. After the deployment, the definition files are stored in your bring your own storage account.
469+
Use a Bicep file to deploy the managed application definition in your service catalog. After the deployment, the definition files are stored in your own storage account.
470470

471471
Open Visual Studio Code, create a file with the name _deployDefinition.bicep_ and save it.
472472

@@ -632,4 +632,4 @@ You have access to the managed application definition, but you want to make sure
632632
You've published the managed application definition. Now, learn how to deploy an instance of that definition.
633633

634634
> [!div class="nextstepaction"]
635-
> [Quickstart: Deploy service catalog managed application](deploy-service-catalog-quickstart.md)
635+
> [Quickstart: Deploy a service catalog managed application](deploy-service-catalog-quickstart.md)

0 commit comments

Comments
 (0)