Skip to content

Commit aa97f10

Browse files
authored
Merge pull request #49527 from georgewallace/runasconsolidate
consolidate runas account docs
2 parents 3210965 + aa1ac69 commit aa97f10

30 files changed

+209
-357
lines changed

.openpublishing.redirection.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2877,7 +2877,27 @@
28772877
},
28782878
{
28792879
"source_path": "articles/automation/automation-sec-configure-azure-runas-account.md",
2880-
"redirect_url": "/azure/automation/automation-create-runas-account",
2880+
"redirect_url": "/azure/automation/manage-runas-account",
2881+
"redirect_document_id": false
2882+
},
2883+
{
2884+
"source_path": "articles/automation/automation-create-runas-account.md",
2885+
"redirect_url": "/azure/automation/manage-runas-account",
2886+
"redirect_document_id": false
2887+
},
2888+
{
2889+
"source_path": "articles/automation/automation-manage-account.md",
2890+
"redirect_url": "/azure/automation/manage-runas-account",
2891+
"redirect_document_id": false
2892+
},
2893+
{
2894+
"source_path": "articles/automation/automation-create-aduser-account.md",
2895+
"redirect_url": "/azure/automation/automation-credentials",
2896+
"redirect_document_id": false
2897+
},
2898+
{
2899+
"source_path": "articles/automation/automation-verify-runas-authentication.md",
2900+
"redirect_url": "/azure/automation/manage-runas-account",
28812901
"redirect_document_id": false
28822902
},
28832903
{

articles/automation/TOC.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,12 @@
5959
items:
6060
- name: Create standalone Automation account
6161
href: automation-create-standalone-account.md
62-
- name: Create Azure AD user account
63-
href: automation-create-aduser-account.md
62+
- name: Manage Automation Run As account
63+
href: manage-runas-account.md
6464
- name: Configure authentication with AWS
6565
href: automation-config-aws-account.md
66-
- name: Create Automation Run As account
67-
href: automation-create-runas-account.md
68-
- name: Validate Automation account config
69-
href: automation-verify-runas-authentication.md
7066
- name: Manage role-based access control
7167
href: automation-role-based-access-control.md
72-
- name: Manage Automation account
73-
href: automation-manage-account.md
7468
- name: Create runbooks
7569
items:
7670
- name: Runbook types

articles/automation/automation-create-aduser-account.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

articles/automation/automation-credentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The function in the following table is used to access credentials in a Python2 r
7676

7777
The following sample commands show how to create a new automation credential. A PSCredential object is first created with the name and password and then used to create the credential asset. Alternatively, you could use the **Get-Credential** cmdlet to be prompted to type in a name and password.
7878

79-
```azurepowershell
79+
```powershell
8080
$user = "MyDomain\MyUser"
8181
$pw = ConvertTo-SecureString "PassWord!" -AsPlainText -Force
8282
$cred = New-Object –TypeName System.Management.Automation.PSCredential –ArgumentList $user, $pw
@@ -126,7 +126,7 @@ print cred["username"]
126126
print cred["password"]
127127
```
128128

129-
## Next Steps
129+
## Next steps
130130

131131
* To learn more about links in graphical authoring, see [Links in graphical authoring](automation-graphical-authoring-intro.md#links-and-workflow)
132132
* To understand the different authentication methods with Automation, see [Azure Automation Security](automation-security-overview.md)

articles/automation/automation-manage-account.md

Lines changed: 0 additions & 77 deletions
This file was deleted.

articles/automation/automation-verify-runas-authentication.md

Lines changed: 0 additions & 124 deletions
This file was deleted.

0 commit comments

Comments
 (0)