Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 1.55 KB

username-password-accounts.md

File metadata and controls

28 lines (24 loc) · 1.55 KB
layout pubDate modDate title description navOrder
src/layouts/Default.astro
2023-01-01
2023-01-01
Create username/password command
New-OctopusUserPassAccount allows you to create a username/password account in Octopus from within a running deployment
10

Username/password account

Command: New-OctopusUserPassAccount

New-OctopusUserPassAccount allows you to create a username/password account in Octopus from within a running deployment

Parameters Value
-name Name for the Username/Password account
-username The username to use when authenticating against the remote host.
-password The password to use to when authenticating against the remote host.
-updateIfExisting Will update an existing account with the same name, create if it doesn't exist

Example:

New-OctopusUserPassAccount -name "My Username Password Account" `
                           -username "myuser" `
                           -password "correct horse battery staple" `
                           -updateIfExisting