Skip to content

Commit afb4cc4

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into automation-create-account-template
2 parents f06deb6 + bba0d6e commit afb4cc4

File tree

4 files changed

+47
-8
lines changed

4 files changed

+47
-8
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: List of built-in policy definitions for Azure Arc for servers
3+
description: Lists Azure Policy built-in policy definitions for Azure Arc for servers. These built-ins provide common approaches to managing your Azure resources.
4+
ms.date: 04/30/2020
5+
ms.topic: sample
6+
ms.service: azure-arc
7+
ms.subservice: azure-arc-servers
8+
author: mgoedtel
9+
ms.author: magoedte
10+
ms.custom: subject-policy-samples
11+
---
12+
# Azure Policy built-in policy definitions for Azure Arc for servers
13+
14+
This page is an index of [Azure Policy](../../governance/policy/overview.md) built-in policy
15+
definitions for Azure Arc for servers. For additional Azure Policy built-ins for other services,
16+
see [Azure Policy built-in definitions](../../governance/policy/samples/built-in-policies.md).
17+
18+
The name of each built-in links to the policy definition in Azure portal. Use the link in the
19+
**Source** column to view the source on the
20+
[Azure Policy GitHub repo](https://github.com/Azure/azure-policy).
21+
22+
## Azure Arc for servers
23+
24+
[!INCLUDE [azure-policy-samples-rp-arcserver](../../../includes/policy/samples/byrp/microsoft.hybridcompute.md)]
25+
26+
## Next steps
27+
28+
- See the built-ins on the [Azure Policy GitHub repo](https://github.com/Azure/azure-policy).
29+
- Review the [Azure Policy definition structure](../../governance/policy/concepts/definition-structure.md).
30+
- Review [Understanding policy effects](../../governance/policy/concepts/effects.md).

articles/azure-arc/toc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
items:
55
- name: What is Azure Arc for servers?
66
href: ./servers/overview.md
7+
- name: Samples
8+
items:
9+
- name: Azure Policy built-ins
10+
displayName: samples, policies, definitions
11+
href: ./servers/policy-samples.md
712
- name: How-to guides
813
items:
914
- name: Connect to Azure Arc

articles/azure-monitor/faq.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,10 @@ See the [release notes](app/release-notes.md) for the SDK appropriate to your ty
251251
### <a name="update"></a>How can I change which Azure resource my project sends data to?
252252
In Solution Explorer, right-click `ApplicationInsights.config` and choose **Update Application Insights**. You can send the data to an existing or new resource in Azure. The update wizard changes the instrumentation key in ApplicationInsights.config, which determines where the server SDK sends your data. Unless you deselect "Update all," it will also change the key where it appears in your web pages.
253253

254+
### Can I use `providers('Microsoft.Insights', 'components').apiVersions[0]` in my Azure Resource Manager deployments?
255+
256+
We do not recommend using this method of populating the API version. The newest version can represent preview releases which may contain breaking changes. Even with newer non-preview releases, the API versions are not always backwards compatible with existing templates, or in some cases the API version may not be available to all subscriptions.
257+
254258
### What is Status Monitor?
255259

256260
A desktop app that you can use in your IIS web server to help configure Application Insights in web apps. It doesn't collect telemetry: you can stop it when you are not configuring an app.

articles/iot-central/core/howto-manage-iot-central-from-cli.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ az extension add --name azure-iot
3737

3838
## Create an application
3939

40-
Use the [az iotcentral app create](/cli/azure/iotcentral/app#az-iotcentral-app-create) command to create an IoT Central application in your Azure subscription. For example:
40+
Use the [az iot central app create](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-create) command to create an IoT Central application in your Azure subscription. For example:
4141

4242
```azurecli-interactive
4343
# Create a resource group for the IoT Central application
@@ -47,14 +47,14 @@ az group create --location "East US" \
4747

4848
```azurecli-interactive
4949
# Create an IoT Central application
50-
az iotcentral app create \
50+
az iot central app create \
5151
--resource-group "MyIoTCentralResourceGroup" \
5252
--name "myiotcentralapp" --subdomain "mysubdomain" \
5353
--sku ST1 --template "[email protected]" \
5454
--display-name "My Custom Display Name"
5555
```
5656

57-
These commands first create a resource group in the east US region for the application. The following table describes the parameters used with the **az iotcentral app create** command:
57+
These commands first create a resource group in the east US region for the application. The following table describes the parameters used with the **az iot central app create** command:
5858

5959
| Parameter | Description |
6060
| ----------------- | ----------- |
@@ -70,24 +70,24 @@ These commands first create a resource group in the east US region for the appli
7070

7171
## View your applications
7272

73-
Use the [az iotcentral app list](/cli/azure/iotcentral/app#az-iotcentral-app-list) command to list your IoT Central applications and view metadata.
73+
Use the [az iot central app list](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-list) command to list your IoT Central applications and view metadata.
7474

7575
## Modify an application
7676

77-
Use the [az iotcentral app update](/cli/azure/iotcentral/app#az-iotcentral-app-update) command to update the metadata of an IoT Central application. For example, to change the display name of your application:
77+
Use the [az iot central app update](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-update) command to update the metadata of an IoT Central application. For example, to change the display name of your application:
7878

7979
```azurecli-interactive
80-
az iotcentral app update --name myiotcentralapp \
80+
az iot central app update --name myiotcentralapp \
8181
--resource-group MyIoTCentralResourceGroup \
8282
--set displayName="My new display name"
8383
```
8484

8585
## Remove an application
8686

87-
Use the [az iotcentral app delete](/cli/azure/iotcentral/app#az-iotcentral-app-delete) command to delete an IoT Central application. For example:
87+
Use the [az iot central app delete](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-delete) command to delete an IoT Central application. For example:
8888

8989
```azurecli-interactive
90-
az iotcentral app delete --name myiotcentralapp \
90+
az iot central app delete --name myiotcentralapp \
9191
--resource-group MyIoTCentralResourceGroup
9292
```
9393

0 commit comments

Comments
 (0)