-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf4bf26
commit 16ad168
Showing
152 changed files
with
720 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/pages/docs/octopus-rest-api/cli/octopus-account-aws-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/pages/docs/octopus-rest-api/cli/octopus-account-aws-list.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/pages/docs/octopus-rest-api/cli/octopus-account-azure-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/pages/docs/octopus-rest-api/cli/octopus-account-azure-list.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
src/pages/docs/octopus-rest-api/cli/octopus-account-azure-oidc-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
layout: src/layouts/Default.astro | ||
pubDate: 2023-01-01 | ||
modDate: 2024-02-01 | ||
title: octopus account azure-oidc create | ||
description: Create an Azure OpenID Connect account | ||
navOrder: 9 | ||
--- | ||
import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; | ||
|
||
Create an Azure OpenID Connect account in Octopus Deploy | ||
|
||
``` | ||
Usage: | ||
octopus account azure-oidc create [flags] | ||
Aliases: | ||
create, new | ||
Flags: | ||
-d, -- string A summary explaining the use of the account to other users. | ||
-T, --accounttest-subject-keys stringArray The subject keys used for an account test | ||
--ad-endpoint-base-uri string Set this only if you need to override the default Active Directory Endpoint. | ||
--application-id string Your Azure Active Directory Application ID. | ||
--audience string The audience claim for the federated credentials. Defaults to api://AzureADTokenExchange | ||
--azure-environment string Set only if you are using an isolated Azure Environment. Configure isolated Azure Environment. Valid option are AzureChinaCloud, AzureChinaCloud, AzureGermanCloud or AzureUSGovernment | ||
-D, --description-file file Read the description from file | ||
-e, --environment stringArray The environments that are allowed to use this account | ||
-E, --execution-subject-keys stringArray The subject keys used for a deployment or runbook | ||
-H, --health-subject-keys stringArray The subject keys used for a health check | ||
-n, --name string A short, memorable, unique name for this account. | ||
--resource-management-base-uri string Set this only if you need to override the default Resource Management Endpoint. | ||
--subscription-id string Your Azure subscription ID. | ||
--tenant-id string Your Azure Active Directory Tenant ID. | ||
Global Flags: | ||
-h, --help Show help for a command | ||
--no-prompt Disable prompting in interactive mode | ||
-f, --output-format string Specify the output format for a command ("json", "table", or "basic") (default "table") | ||
-s, --space string Specify the space for operations | ||
``` | ||
|
||
## Examples | ||
|
||
<SamplesInstance /> | ||
|
||
``` | ||
$ octopus account azure-oidc create | ||
``` | ||
|
||
## Learn more | ||
|
||
- [Octopus CLI](/docs/octopus-rest-api/cli) | ||
- [Creating API keys](/docs/octopus-rest-api/how-to-create-an-api-key) |
40 changes: 40 additions & 0 deletions
40
src/pages/docs/octopus-rest-api/cli/octopus-account-azure-oidc-list.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
layout: src/layouts/Default.astro | ||
pubDate: 2023-01-01 | ||
modDate: 2024-02-01 | ||
title: octopus account azure-oidc list | ||
description: List Azure OpenID Connect accounts | ||
navOrder: 10 | ||
--- | ||
import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; | ||
|
||
List Azure OpenID Connect accounts in Octopus Deploy | ||
|
||
``` | ||
Usage: | ||
octopus account azure-oidc list [flags] | ||
Aliases: | ||
list, ls | ||
Global Flags: | ||
-h, --help Show help for a command | ||
--no-prompt Disable prompting in interactive mode | ||
-f, --output-format string Specify the output format for a command ("json", "table", or "basic") (default "table") | ||
-s, --space string Specify the space for operations | ||
``` | ||
|
||
## Examples | ||
|
||
<SamplesInstance /> | ||
|
||
``` | ||
$ octopus account azure-oidc list | ||
``` | ||
|
||
## Learn more | ||
|
||
- [Octopus CLI](/docs/octopus-rest-api/cli) | ||
- [Creating API keys](/docs/octopus-rest-api/how-to-create-an-api-key) |
44 changes: 44 additions & 0 deletions
44
src/pages/docs/octopus-rest-api/cli/octopus-account-azure-oidc.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
layout: src/layouts/Default.astro | ||
pubDate: 2023-01-01 | ||
modDate: 2024-02-01 | ||
title: octopus account azure-oidc | ||
description: Manage Azure OpenID Connect accounts | ||
navOrder: 8 | ||
--- | ||
import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; | ||
|
||
Manage Azure OpenID Connect accounts in Octopus Deploy | ||
|
||
``` | ||
Usage: | ||
octopus account azure-oidc [command] | ||
Available Commands: | ||
create Create an Azure OpenID Connect account | ||
help Help about any command | ||
list List Azure OpenID Connect accounts | ||
Global Flags: | ||
-h, --help Show help for a command | ||
--no-prompt Disable prompting in interactive mode | ||
-f, --output-format string Specify the output format for a command ("json", "table", or "basic") (default "table") | ||
-s, --space string Specify the space for operations | ||
Use "octopus account azure-oidc [command] --help" for more information about a command. | ||
``` | ||
|
||
## Examples | ||
|
||
<SamplesInstance /> | ||
|
||
``` | ||
$ octopus account azure-oidc list | ||
``` | ||
|
||
## Learn more | ||
|
||
- [Octopus CLI](/docs/octopus-rest-api/cli) | ||
- [Creating API keys](/docs/octopus-rest-api/how-to-create-an-api-key) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-delete.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-gcp-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-gcp-list.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-ssh-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-ssh-list.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/pages/docs/octopus-rest-api/cli/octopus-account-token-create.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.