Skip to content

Commit d2e7991

Browse files
committed
revisions
1 parent 6009c2f commit d2e7991

File tree

7 files changed

+17
-15
lines changed

7 files changed

+17
-15
lines changed

articles/azure-resource-manager/managed-applications/concepts-custom-role-definition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This article provides an overview of the custom role definition artifact and its
1515

1616
## Custom role definition artifact
1717

18-
You need to name the custom role definition artifact customRoleDefinition.json. Place it at the same level as createUiDefinition.json and mainTemplate.json in the .zip package that creates a managed application definition. To learn how to create the .zip package and publish a managed application definition, see [Publish a managed application definition.](publish-managed-app-definition-quickstart.md)
18+
You need to name the custom role definition artifact customRoleDefinition.json. Place it at the same level as createUiDefinition.json and mainTemplate.json in the .zip package that creates a managed application definition. To learn how to create the .zip package and publish a managed application definition, see [Publish a managed application definition.](publish-service-catalog-app.md)
1919

2020
## Custom role definition schema
2121

articles/azure-resource-manager/managed-applications/concepts-view-definition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This article provides an overview of view definition artifact and its capabiliti
1515

1616
## View definition artifact
1717

18-
The view definition artifact must be named **viewDefinition.json** and placed at the same level as **createUiDefinition.json** and **mainTemplate.json** in the .zip package that creates a managed application definition. To learn how to create the .zip package and publish a managed application definition, see [Publish an Azure Managed Application definition](publish-managed-app-definition-quickstart.md)
18+
The view definition artifact must be named **viewDefinition.json** and placed at the same level as **createUiDefinition.json** and **mainTemplate.json** in the .zip package that creates a managed application definition. To learn how to create the .zip package and publish a managed application definition, see [Publish an Azure Managed Application definition](publish-service-catalog-app.md)
1919

2020
## View definition schema
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: tomfitz
99
---
1010
# Quickstart: Deploy service catalog app through Azure portal
1111

12-
In the [preceding quickstart](publish-managed-app-definition-quickstart.md), you published a managed application definition. In this quickstart, you create a service catalog app from that definition.
12+
In the [preceding quickstart](publish-service-catalog-app.md), you published a managed application definition. In this quickstart, you create a service catalog app from that definition.
1313

1414
## Create service catalog app
1515

articles/azure-resource-manager/managed-applications/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ You can apply an [Azure Policy](../../governance/policy/overview.md) to your man
7979
In this article, you learned about benefits of using managed applications. Go to the next article to create a managed application definition.
8080

8181
> [!div class="nextstepaction"]
82-
> [Quickstart: Publish an Azure managed application definition](publish-managed-app-definition-quickstart.md)
82+
> [Quickstart: Publish an Azure managed application definition](publish-service-catalog-app.md)

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

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ az storage blob upload \
189189

190190
### Create an Azure Active Directory user group or application
191191

192-
The next step is to select a user group, user, or application for managing the resources on behalf of the customer. This identity has permissions on the managed resource group according to the role that is assigned. The role can be any built-in Role-Based Access Control (RBAC) role like Owner or Contributor. To create a new Active Directory user group, see [Create a group and add members in Azure Active Directory](../../active-directory/fundamentals/active-directory-groups-create-azure-portal.md).
192+
The next step is to select a user group, user, or application for managing the resources for the customer. This identity has permissions on the managed resource group according to the role that is assigned. The role can be any built-in Role-Based Access Control (RBAC) role like Owner or Contributor. To create a new Active Directory user group, see [Create a group and add members in Azure Active Directory](../../active-directory/fundamentals/active-directory-groups-create-azure-portal.md).
193193

194194
You need the object ID of the user group to use for managing the resources.
195195

196196
# [PowerShell](#tab/azure-powershell)
197197

198-
```powershell
198+
```azurepowershell-interactive
199199
$groupID=(Get-AzADGroup -DisplayName mygroup).Id
200200
```
201201

@@ -213,7 +213,7 @@ Next, you need the role definition ID of the RBAC built-in role you want to gran
213213

214214
# [PowerShell](#tab/azure-powershell)
215215

216-
```powershell
216+
```azurepowershell-interactive
217217
$ownerID=(Get-AzRoleDefinition -Name Owner).Id
218218
```
219219

@@ -231,7 +231,7 @@ If you don't already have a resource group for storing your managed application
231231

232232
# [PowerShell](#tab/azure-powershell)
233233

234-
```powershell
234+
```azurepowershell-interactive
235235
New-AzResourceGroup -Name appDefinitionGroup -Location westcentralus
236236
```
237237

@@ -247,7 +247,7 @@ Now, create the managed application definition resource.
247247

248248
# [PowerShell](#tab/azure-powershell)
249249

250-
```powershell
250+
```azurepowershell-interactive
251251
$blob = Get-AzStorageBlob -Container appcontainer -Blob app.zip -Context $ctx
252252
253253
New-AzManagedApplicationDefinition `
@@ -264,6 +264,8 @@ New-AzManagedApplicationDefinition `
264264
# [Azure CLI](#tab/azure-cli)
265265

266266
```azurecli-interactive
267+
blob=$(az storage blob url --account-name mystorageaccount --container-name appcontainer --name app.zip --output tsv)
268+
267269
az managedapp definition create \
268270
--name "ManagedStorage" \
269271
--location "westcentralus" \
@@ -272,7 +274,7 @@ az managedapp definition create \
272274
--display-name "Managed Storage Account" \
273275
--description "Managed Azure Storage Account" \
274276
--authorizations "$groupid:$ownerid" \
275-
--package-file-uri "https://github.com/Azure/azure-managedapp-samples/raw/master/Managed%20Application%20Sample%20Packages/201-managed-storage-account/managedstorage.zip"
277+
--package-file-uri "$blob"
276278
```
277279

278280
---
@@ -288,7 +290,7 @@ Some of the parameters used in the preceding example are:
288290

289291
## Bring your own storage for the managed application definition
290292

291-
You can choose to store your managed application definition within a storage account provided by you during creation so that it's location and access can be fully managed by you for your regulatory needs.
293+
You can choose to store your managed application definition within a storage account provided by you during creation so that its location and access can be fully managed by you for your regulatory needs.
292294

293295
> [!NOTE]
294296
> Bring your own storage is only supported with ARM Template or REST API deployments of the managed application definition.
@@ -307,7 +309,7 @@ Before your managed application definition can be deployed to your storage accou
307309
1. Select **Access control (IAM)** to display the access control settings for the storage account. Select the **Role assignments** tab to see the list of role assignments.
308310
1. In the **Add role assignment** window, select the **Contributor** role.
309311
1. From the **Assign access to** field, select **Azure AD user, group, or service principal**.
310-
1. Under **Select** search for **Appliance Resource Provider** role and select it.
312+
1. Under **Select**, search for **Appliance Resource Provider** role and select it.
311313
1. Save the role assignment.
312314

313315
### Deploy the managed application definition with an ARM Template
@@ -384,7 +386,7 @@ Use the following ARM Template to deploy your packaged managed application as a
384386
}
385387
```
386388

387-
We have added a new property named **storageAccountId** to your applicationDefintion's properties and provide storage account id you wish to store your definition in as its value:
389+
We have added a new property named **storageAccountId** to your applicationDefintion's properties and provide storage account ID you wish to store your definition in as its value:
388390

389391
You can verify that the application definition files are saved in your provided storage account in a container titled **applicationdefinitions**.
390392

articles/marketplace/cloud-partner-portal/azure-applications/cpp-create-technical-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Review the following Azure application documentation, which provides Quickstarts
2828

2929
- [Azure Quickstart templates](https://azure.microsoft.com/documentation/templates/)
3030
- [GitHub Azure Quickstart templates](https://github.com/azure/azure-quickstart-templates)
31-
- [Publish application definition](https://docs.microsoft.com/azure/managed-applications/publish-managed-app-definition-quickstart)
31+
- [Publish application definition](https://docs.microsoft.com/azure/managed-applications/publish-service-catalog-app)
3232
- [Deploy service catalog app](https://docs.microsoft.com/azure/managed-applications/deploy-service-catalog-quickstart)
3333

3434

articles/marketplace/partner-center-portal/create-new-azure-apps-offer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Review the following Azure application documentation, which provides Quickstarts
5353

5454
* [Azure Quickstart templates](https://azure.microsoft.com/documentation/templates/)
5555
* [GitHub Azure Quickstart templates](https://github.com/azure/azure-quickstart-templates)
56-
* [Publish application definition](https://docs.microsoft.com/azure/managed-applications/publish-managed-app-definition-quickstart)
56+
* [Publish application definition](https://docs.microsoft.com/azure/managed-applications/publish-service-catalog-app)
5757
* [Deploy service catalog app](https://docs.microsoft.com/azure/managed-applications/deploy-service-catalog-quickstart)
5858

5959
* Tutorials:

0 commit comments

Comments
 (0)