Manage Organizations using the Neon CLI
Neon's CLI (neonctl
) provides an expanding set of commands to manage your organizations.
Authorization
Use the auth
command to authenticate your Neon account from the CLI. This command opens a browser where you will be asked to grant the necessary permissions to managae both your personal and organization resources.
Note that authentication is tied to your personal account. Once authenticated, you can access and manage any Organizations that you belong to.
See Auth - CLI to learn more.
List Organizations
The neonctl orgs list
command outputs a list of all organizations that the CLI user currently belongs to. This command is useful for quickly identifying the org_id
associated with each organization, which can be used in other CLI operations.
Example:
See Orgs - CLI to learn more.
Manage projects within an Organization
The Neon CLI projects
command supports an --org-id
option. This allows you to list or create projects within a specified organization.
Example: Listing all projects in an organization:
You can include the org-id
to apply the following subcommands specifically to your organization:
See Projects - CLI to learn more.
Setting Organization Context
To simplify your workflow, the Neon CLI set-context
command supports setting an organization context. This means you don't have to specify an organization ID every time you run a CLI command.
Sees set-context - CLI to learn more.