diff --git a/flyctl/cmd/fly_orgs.md b/flyctl/cmd/fly_orgs.md index 2435b073a0..baba272a6b 100644 --- a/flyctl/cmd/fly_orgs.md +++ b/flyctl/cmd/fly_orgs.md @@ -14,6 +14,7 @@ fly orgs [command] [flags] * [invite](/docs/flyctl/orgs-invite/) - Invite user (by email) to organization * [list](/docs/flyctl/orgs-list/) - Lists organizations for current user * [remove](/docs/flyctl/orgs-remove/) - Remove a user from an organization +* [replay-sources](/docs/flyctl/orgs-replay-sources/) - Manage allowed replay source organizations * [show](/docs/flyctl/orgs-show/) - Show information about an organization ## Options diff --git a/flyctl/cmd/fly_orgs_replay-sources.md b/flyctl/cmd/fly_orgs_replay-sources.md new file mode 100644 index 0000000000..80bd4c8a17 --- /dev/null +++ b/flyctl/cmd/fly_orgs_replay-sources.md @@ -0,0 +1,30 @@ +Commands for managing cross-organization replay permissions. + +## Usage +~~~ +fly orgs replay-sources [command] [flags] +~~~ + +## Available Commands +* [add](/docs/flyctl/orgs-replay-sources-add/) - Add allowed replay source organizations +* [list](/docs/flyctl/orgs-replay-sources-list/) - List allowed replay source organizations +* [remove](/docs/flyctl/orgs-replay-sources-remove/) - Remove allowed replay source organizations + +## Options + +~~~ + -h, --help help for replay-sources +~~~ + +## Global Options + +~~~ + -t, --access-token string Fly API Access Token + --debug Print additional logs and traces + --verbose Verbose output +~~~ + +## See Also + +* [fly orgs](/docs/flyctl/orgs/) - Commands for managing Fly organizations + diff --git a/flyctl/cmd/fly_orgs_replay-sources_add.md b/flyctl/cmd/fly_orgs_replay-sources_add.md new file mode 100644 index 0000000000..d28c18dd51 --- /dev/null +++ b/flyctl/cmd/fly_orgs_replay-sources_add.md @@ -0,0 +1,28 @@ +Add organizations to the list of allowed replay sources for this organization. + +If no slugs are provided, an interactive selector will be shown. + +## Usage +~~~ +fly orgs replay-sources add [...] [flags] +~~~ + +## Options + +~~~ + -h, --help help for add + -o, --org string The target Fly.io organization +~~~ + +## Global Options + +~~~ + -t, --access-token string Fly API Access Token + --debug Print additional logs and traces + --verbose Verbose output +~~~ + +## See Also + +* [fly orgs replay-sources](/docs/flyctl/orgs-replay-sources/) - Manage allowed replay source organizations + diff --git a/flyctl/cmd/fly_orgs_replay-sources_list.md b/flyctl/cmd/fly_orgs_replay-sources_list.md new file mode 100644 index 0000000000..a2551e1228 --- /dev/null +++ b/flyctl/cmd/fly_orgs_replay-sources_list.md @@ -0,0 +1,27 @@ +List organizations allowed to replay requests to this organization. + +## Usage +~~~ +fly orgs replay-sources list [flags] +~~~ + +## Options + +~~~ + -h, --help help for list + -j, --json JSON output + -o, --org string The target Fly.io organization +~~~ + +## Global Options + +~~~ + -t, --access-token string Fly API Access Token + --debug Print additional logs and traces + --verbose Verbose output +~~~ + +## See Also + +* [fly orgs replay-sources](/docs/flyctl/orgs-replay-sources/) - Manage allowed replay source organizations + diff --git a/flyctl/cmd/fly_orgs_replay-sources_remove.md b/flyctl/cmd/fly_orgs_replay-sources_remove.md new file mode 100644 index 0000000000..af09f39368 --- /dev/null +++ b/flyctl/cmd/fly_orgs_replay-sources_remove.md @@ -0,0 +1,29 @@ +Remove organizations from the list of allowed replay sources for this organization. + +If no slugs are provided, an interactive selector will be shown. + +## Usage +~~~ +fly orgs replay-sources remove [...] [flags] +~~~ + +## Options + +~~~ + -h, --help help for remove + -o, --org string The target Fly.io organization + -y, --yes Accept all confirmations +~~~ + +## Global Options + +~~~ + -t, --access-token string Fly API Access Token + --debug Print additional logs and traces + --verbose Verbose output +~~~ + +## See Also + +* [fly orgs replay-sources](/docs/flyctl/orgs-replay-sources/) - Manage allowed replay source organizations +