Skip to content

Commit 624a088

Browse files
author
Ryan Willis
committed
acrolinx fixes
1 parent 4b76213 commit 624a088

12 files changed

+50
-47
lines changed

articles/azure-arc/servers/azcmagent-check.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
---
22
title: azcmagent check CLI reference
33
description: Syntax for the azcmagent check command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

108
# azcmagent check
119

12-
Run a series of network connectivity checks to see if the agent can successfully communicate with required network endpoints. The command will output a table showing connectivity test results for each required endpoint, including whether the agent used a private endpoint and/or proxy server.
10+
Run a series of network connectivity checks to see if the agent can successfully communicate with required network endpoints. The command outputs a table showing connectivity test results for each required endpoint, including whether the agent used a private endpoint and/or proxy server.
1311

1412
## Usage
1513

articles/azure-arc/servers/azcmagent-config.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent config CLI reference
33
description: Syntax for the azcmagent config command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

@@ -67,7 +65,7 @@ azcmagent config get config.mode
6765

6866
## azcmagent config info
6967

70-
Describes available configuration properties and supported values. When run without specifying a specific property, the command will describe all available properties their supported values.
68+
Describes available configuration properties and supported values. When run without specifying a specific property, the command describes all available properties their supported values.
7169

7270
### Usage
7371

@@ -143,10 +141,10 @@ azcmagent config set extensions.allowlist "Microsoft.Azure.Monitor/AzureMonitorW
143141

144142
`-a`, `--add`
145143

146-
Append the value to the list of existing values. If not specified, the default behavior is to replace the list of existing values. This flag is only supported for configuration properties that support more than one value. Cannot be used with the `--remove` flag.
144+
Append the value to the list of existing values. If not specified, the default behavior is to replace the list of existing values. This flag is only supported for configuration properties that support more than one value. Can't be used with the `--remove` flag.
147145

148146
`-r`, `--remove`
149147

150-
Remove the specified value from the list, retaining all other values. If not specified, the default behavior is to replace the list of existing values. This flag is only supported for configuration properties that support more than one value. Cannot be used in conjunction with the `--add` flag.
148+
Remove the specified value from the list, retaining all other values. If not specified, the default behavior is to replace the list of existing values. This flag is only supported for configuration properties that support more than one value. Can't be used in conjunction with the `--add` flag.
151149

152150
[!INCLUDE [common-flags](includes/azcmagent-common-flags.md)]

articles/azure-arc/servers/azcmagent-connect.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
---
22
title: azcmagent connect CLI reference
33
description: Syntax for the azcmagent connect command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

108
# azcmagent connect
119

12-
Connects the server to Azure Arc by creating a metadata representation of the server in Azure and associating the Azure connected machine agent with it. The command requires information about the tenant, subscription, and resource group where you want to represent the server in Azure and valid credentials with permissions to create Azure Arc-enabled servers (Microsoft.HybridCompute/machines) resources in that location.
10+
Connects the server to Azure Arc by creating a metadata representation of the server in Azure and associating the Azure connected machine agent with it. The command requires information about the tenant, subscription, and resource group where you want to represent the server in Azure and valid credentials with permissions to create Azure Arc-enabled server resources in that location.
1311

1412
## Usage
1513

@@ -26,6 +24,7 @@ azcmagent connect --subscription "Production" --resource-group "HybridServers" -
2624
```
2725

2826
Connect a server using a service principal
27+
2928
```
3029
azcmagent connect --subscription "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" --resource-group "HybridServers" --location "australiaeast" --service-principal-id "ID" --service-principal-secret "SECRET" --tenant-id "TENANT"
3130
```
@@ -42,15 +41,15 @@ There are 4 ways to provide authentication credentials to the Azure connected ma
4241

4342
### Interactive browser login (Windows-only)
4443

45-
This option is the default on Windows operating systems with a desktop experience. It will open the login page in your default web browser. This option may be required if your organization has configured conditional access policies that require you to log in from trusted machines.
44+
This option is the default on Windows operating systems with a desktop experience. It login page opens in your default web browser. This option may be required if your organization has configured conditional access policies that require you to log in from trusted machines.
4645

4746
No flag is required to use the interactive browser login.
4847

4948
### Device code login
5049

51-
This option generates a code that you can use to log in on a web browser on another device. This is the default option on Windows Server core editions and all Linux distributions. When you execute the connect command, you will have 5 minutes to open the specified login URL on an internet-connected device and complete the login flow.
50+
This option generates a code that you can use to log in on a web browser on another device. This is the default option on Windows Server core editions and all Linux distributions. When you execute the connect command, you have 5 minutes to open the specified login URL on an internet-connected device and complete the login flow.
5251

53-
To authenticate with a device code, use the `--use-device-code` flag. If the account you're logging in with and the subscription where you're registering the server are not in the same tenant, you must also provide the tenant ID for the subscription with `--tenant-id [tenant]`.
52+
To authenticate with a device code, use the `--use-device-code` flag. If the account you're logging in with and the subscription where you're registering the server aren't in the same tenant, you must also provide the tenant ID for the subscription with `--tenant-id [tenant]`.
5453

5554
### Service principal
5655

@@ -62,13 +61,13 @@ To authenticate with a service principal, provide the service principal's applic
6261

6362
Access tokens can also be used for non-interactive authentication, but are short-lived and typically used by automation solutions onboarding several servers over a short period of time. You can get an access token with [Get-AzAccessToken](/powershell/module/az.accounts/get-azaccesstoken) or any other Azure Active Directory client.
6463

65-
To authenticate with an access token, use the `--access-token [token]` flag. If the account you're logging in with and the subscription where you're registering the server are not in the same tenant, you must also provide the tenant ID for the subscription with `--tenant-id [tenant]`.
64+
To authenticate with an access token, use the `--access-token [token]` flag. If the account you're logging in with and the subscription where you're registering the server aren't in the same tenant, you must also provide the tenant ID for the subscription with `--tenant-id [tenant]`.
6665

6766
## Flags
6867

6968
`--access-token`
7069

71-
Specifies the Azure Active Directory access token used to create the Azure Arc-enabled server resource in Azure. See [authentication options](#authentication-options) for more information.
70+
Specifies the Azure Active Directory access token used to create the Azure Arc-enabled server resource in Azure. For more information, see [authentication options](#authentication-options).
7271

7372
`--cloud`
7473

@@ -82,11 +81,11 @@ Supported values:
8281

8382
`--correlation-id`
8483

85-
Identifies the mechanism being used to connect the server to Azure Arc. For example, the GUID may indicate the agent was installed by a script generated in the Azure Portal or executed as part of an Azure Arc Jumpstart scenario. This flag is optional and only used for telemetry purposes.
84+
Identifies the mechanism being used to connect the server to Azure Arc. For example, scripts generated in the Azure Portal include a GUID that helps Microsoft track usage of that experience. This flag is optional and only used for telemetry purposes to improve your experience.
8685

8786
`--ignore-network-check`
8887

89-
Instructs the agent to continue onboarding even if the network check for required endpoints fails. You should only use this option if you're sure that the network check results are incorrect. In most cases, a failed network check indicates that the Arc agent will not function correctly on the server.
88+
Instructs the agent to continue onboarding even if the network check for required endpoints fails. You should only use this option if you're sure that the network check results are incorrect. In most cases, a failed network check indicates that the Arc agent won't function correctly on the server.
9089

9190
`-l`, `--location`
9291

@@ -96,7 +95,7 @@ Sample value: westeurope
9695

9796
`--private-link-scope`
9897

99-
Specifies the resource ID of the Azure Arc private link scope to associate with the server. This flag is required if you are using private endpoints to connect the server to Azure.
98+
Specifies the resource ID of the Azure Arc private link scope to associate with the server. This flag is required if you're using private endpoints to connect the server to Azure.
10099

101100
`-g`, `--resource-group`
102101

@@ -111,19 +110,19 @@ Name for the Azure Arc-enabled server resource. By default, the resource name is
111110
* The AWS instance ID, if the server is on AWS
112111
* The hostname for all other machines
113112

114-
You can override the default name with a name of your own choosing to avoid naming conflicts. Once chosen, the name of the Azure resource cannot be changed without disconnecting and re-connecting the agent.
113+
You can override the default name with a name of your own choosing to avoid naming conflicts. Once chosen, the name of the Azure resource can't be changed without disconnecting and re-connecting the agent.
115114

116115
If you want to force AWS servers to use the hostname instead of the instance ID, pass in `$(hostname)` to have the shell evaluate the current hostname and pass that in as the new resource name.
117116

118117
Sample value: FileServer01
119118

120119
`-i`, `--service-principal-id`
121120

122-
Specifies the application ID of the service principal used to create the Azure Arc-enabled server resource in Azure. Must be used with the `--service-principal-secret` and `--tenant-id` flags. See [authentication options](#authentication-options) for more information.
121+
Specifies the application ID of the service principal used to create the Azure Arc-enabled server resource in Azure. Must be used with the `--service-principal-secret` and `--tenant-id` flags. For more information, see [authentication options](#authentication-options).
123122

124123
`-p`, `--service-principal-secret`
125124

126-
Specifies the service principal secret. Must be used with the `--service-principal-id` and `--tenant-id` flags. To avoid exposing the secret in console logs, it's recommended to pass in the service principal secret in a configuration file. See [authentication options](#authentication-options) for more information.
125+
Specifies the service principal secret. Must be used with the `--service-principal-id` and `--tenant-id` flags. To avoid exposing the secret in console logs, it's recommended to pass in the service principal secret in a configuration file. For more information, see [authentication options](#authentication-options).
127126

128127
`-s`, `--subscription-id`
129128

@@ -139,10 +138,10 @@ Sample value: Datacenter=NY3,Application=SharePoint,Owner='Shared Infrastructure
139138

140139
`-t`, `--tenant-id`
141140

142-
The tenant ID for the subscription where you want to create the Azure Arc-enabled server resource. This is required when authenticating with a service principal. For all other authentication methods, the home tenant of the account used to authenticate with Azure is used for the resource as well. If the tenant for the account and subscription are different (guest accounts, Lighthouse), you must specify the tenant ID to clarify the tenant where the subscription is located.
141+
The tenant ID for the subscription where you want to create the Azure Arc-enabled server resource. This flag is required when authenticating with a service principal. For all other authentication methods, the home tenant of the account used to authenticate with Azure is used for the resource as well. If the tenants for the account and subscription are different (guest accounts, Lighthouse), you must specify the tenant ID to clarify the tenant where the subscription is located.
143142

144143
`--use-device-code`
145144

146-
Generate an Azure Active Directory device login code that can be entered in a web browser on another computer to authenticate the agent with Azure. See [authentication options](#authentication-options) for more information.
145+
Generate an Azure Active Directory device login code that can be entered in a web browser on another computer to authenticate the agent with Azure. For more information, see [authentication options](#authentication-options).
147146

148147
[!INCLUDE [common-flags](includes/azcmagent-common-flags.md)]

articles/azure-arc/servers/azcmagent-disconnect.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent disconnect CLI reference
33
description: Syntax for the azcmagent disconnect command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

@@ -45,13 +43,13 @@ There are 4 ways to provide authentication credentials to the Azure connected ma
4543
4644
### Interactive browser login (Windows-only)
4745

48-
This option is the default on Windows operating systems with a desktop experience. It will open the login page in your default web browser. This option may be required if your organization has configured conditional access policies that require you to log in from trusted machines.
46+
This option is the default on Windows operating systems with a desktop experience. The login page opens in your default web browser. This option may be required if your organization has configured conditional access policies that require you to log in from trusted machines.
4947

5048
No flag is required to use the interactive browser login.
5149

5250
### Device code login
5351

54-
This option generates a code that you can use to log in on a web browser on another device. This is the default option on Windows Server core editions and all Linux distributions. When you execute the connect command, you will have 5 minutes to open the specified login URL on an internet-connected device and complete the login flow.
52+
This option generates a code that you can use to log in on a web browser on another device. This is the default option on Windows Server core editions and all Linux distributions. When you execute the connect command, you have 5 minutes to open the specified login URL on an internet-connected device and complete the login flow.
5553

5654
To authenticate with a device code, use the `--use-device-code` flag.
5755

@@ -71,22 +69,22 @@ To authenticate with an access token, use the `--access-token [token]` flag.
7169

7270
`--access-token`
7371

74-
Specifies the Azure Active Directory access token used to create the Azure Arc-enabled server resource in Azure. See [authentication options](#authentication-options) for more information.
72+
Specifies the Azure Active Directory access token used to create the Azure Arc-enabled server resource in Azure. For more information, see [authentication options](#authentication-options).
7573

7674
`-f`, `--force-local-only`
7775

7876
Disconnects the server without deleting the resource in Azure. Primarily used if the Azure resource has already been deleted and the local agent configuration needs to be cleaned up.
7977

8078
`-i`, `--service-principal-id`
8179

82-
Specifies the application ID of the service principal used to create the Azure Arc-enabled server resource in Azure. Must be used with the `--service-principal-secret` and `--tenant-id` flags. See [authentication options](#authentication-options) for more information.
80+
Specifies the application ID of the service principal used to create the Azure Arc-enabled server resource in Azure. Must be used with the `--service-principal-secret` and `--tenant-id` flags. For more information, see [authentication options](#authentication-options).
8381

8482
`-p`, `--service-principal-secret`
8583

86-
Specifies the service principal secret. Must be used with the `--service-principal-id` and `--tenant-id` flags. To avoid exposing the secret in console logs, it's recommended to pass in the service principal secret in a configuration file. See [authentication options](#authentication-options) for more information.
84+
Specifies the service principal secret. Must be used with the `--service-principal-id` and `--tenant-id` flags. To avoid exposing the secret in console logs, it's recommended to pass in the service principal secret in a configuration file. For more information, see [authentication options](#authentication-options).
8785

8886
`--use-device-code`
8987

90-
Generate an Azure Active Directory device login code that can be entered in a web browser on another computer to authenticate the agent with Azure. See [authentication options](#authentication-options) for more information.
88+
Generate an Azure Active Directory device login code that can be entered in a web browser on another computer to authenticate the agent with Azure. For more information, see [authentication options](#authentication-options).
9189

9290
[!INCLUDE [common-flags](includes/azcmagent-common-flags.md)]

articles/azure-arc/servers/azcmagent-genkey.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
---
22
title: azcmagent genkey CLI reference
33
description: Syntax for the azcmagent genkey command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

108
# azcmagent genkey
119

12-
Generates a private-public key pair that can be used to onboard a machine asynchronously. This command is reserved for use by Azure Arc virtual machine offerings and is not intended to be directly called by users.
10+
Generates a private-public key pair that can be used to onboard a machine asynchronously. This command is used when connecting a server to an Azure Arc-enabled virtual machine offering (VMware vSphere, Azure Stack HCI, or System Center VMM). It is not intended for use by end users.
1311

1412
## Usage
1513

articles/azure-arc/servers/azcmagent-help.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent help CLI reference
33
description: Syntax for the azcmagent help command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

articles/azure-arc/servers/azcmagent-license.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent license CLI reference
33
description: Syntax for the azcmagent license command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

articles/azure-arc/servers/azcmagent-logs.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent logs CLI reference
33
description: Syntax for the azcmagent logs command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

@@ -39,7 +37,7 @@ Collect all log files on the system instead of just the most recent. Useful when
3937

4038
`-o`, `--output`
4139

42-
Specifies the path and name for the ZIP file. If this flag is not specified, the ZIP will be saved to the console's current directory with the name "azcmagent-_TIMESTAMP_-_COMPUTERNAME_.zip"
40+
Specifies the path and name for the ZIP file. If this flag is not specified, the ZIP is saved to the console's current directory with the name "azcmagent-_TIMESTAMP_-_COMPUTERNAME_.zip"
4341

4442
Sample value: custom-logname.zip
4543

articles/azure-arc/servers/azcmagent-show.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent show CLI reference
33
description: Syntax for the azcmagent show command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

articles/azure-arc/servers/azcmagent-version.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
title: azcmagent version CLI reference
33
description: Syntax for the azcmagent version command line tool
4-
author: rpsqrd
54
ms.topic: reference
6-
ms.author: ryanpu
75
ms.date: 04/20/2023
86
---
97

0 commit comments

Comments
 (0)