Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions flyctl/cmd/fly_orgs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
30 changes: 30 additions & 0 deletions flyctl/cmd/fly_orgs_replay-sources.md
Original file line number Diff line number Diff line change
@@ -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

28 changes: 28 additions & 0 deletions flyctl/cmd/fly_orgs_replay-sources_add.md
Original file line number Diff line number Diff line change
@@ -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 [<slug>...] [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

27 changes: 27 additions & 0 deletions flyctl/cmd/fly_orgs_replay-sources_list.md
Original file line number Diff line number Diff line change
@@ -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

29 changes: 29 additions & 0 deletions flyctl/cmd/fly_orgs_replay-sources_remove.md
Original file line number Diff line number Diff line change
@@ -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 [<slug>...] [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