Skip to content

Commit 05191b1

Browse files
authored
Merge pull request #280254 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents d93784d + 800d19f commit 05191b1

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

articles/automation/learn/automation-tutorial-runbook-textual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ You can use the `ForEach -Parallel` construct to process commands for each item
314314
|VMs|Enter the names of the virtual machines using the following syntax: `["VM1","VM2","VM3"]`|
315315
|Action|Enter `stop` or `start`.|
316316
317-
1. Navigate to your list of virtual machines and refresh the page every few seconds. Observe that the action for each VM happens in parallel. Without the `-Parallel` keyword, the actions would have performed sequentially. While the VMs will start sequentially, each VM may reach the **Running** phase at slightly different times based on the characteristics of each VM.
317+
1. Navigate to your list of virtual machines and refresh the page every few seconds. Observe that the action for each VM happens in parallel. Without the `-Parallel` keyword, the actions would have performed sequentially. While the VMs will start in parallel, each VM may reach the **Running** phase at slightly different times based on the characteristics of each VM.
318318
319319
## Clean up resources
320320

articles/automation/manage-sql-server-in-automation.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,12 @@ To allow access from the Automation system managed identity to the Azure SQL dat
5151
1. Go to [Azure portal](https://portal.azure.com) home page and select **SQL servers**.
5252
1. In the **SQL server** page, under **Settings**, select **SQL Databases**.
5353
1. Select your database to go to the SQL database page and select **Query editor (preview)** and execute the following two queries:
54-
- CREATE USER "AutomationAccount" FROM EXTERNAL PROVIDER WITH OBJECT_ID= `ObjectID`
55-
- EXEC sp_addrolemember `db_owner`, "AutomationAccount"
56-
- Automation account - replace with your Automation account's name
57-
- Object ID - replace with object (principal) ID for your system managed identity principal from step 1.
54+
```sql
55+
# AutomationAccount - replace with your Automation account's name
56+
# ObjectID - replace with object (principal) ID for your system managed identity principal from step 1.
57+
CREATE USER "AutomationAccount" FROM EXTERNAL PROVIDER WITH OBJECT_ID = `ObjectID`
58+
EXEC sp_addrolemember `db_owner`, "AutomationAccount"
59+
```
5860

5961
## Sample code
6062

articles/spring-apps/enterprise/how-to-use-accelerator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ az spring application-accelerator predefined-accelerator enable \
200200

201201
### Manage your own accelerators
202202

203-
In addition to using the predefined accelerators, you can create your own accelerators. You can use any Git repository in Azure Devops, GitHub, GitLab, or BitBucket.
203+
In addition to using the predefined accelerators, you can create your own accelerators. You can use any Git repository in Azure DevOps, GitHub, GitLab, or BitBucket.
204204

205205
Use the following steps to create and maintain your own accelerators:
206206

0 commit comments

Comments
 (0)