Description
Add a command to list available Dataverse environments that the user has access to, similar to the pac env list functionality from the Power Platform CLI.
Motivation
This would help users discover available environments before creating profiles. Currently, users need to know or look up the exact environment URL before running txc config profile create --url <URL>. Having a discovery command would streamline the profile creation workflow.
Proposed Solution
Add a new command like:
or
This should display available environments with details like:
- Environment name
- Environment URL
- Environment type (Production/Sandbox)
- Organization ID
- Tenant
Use Case
- User runs:
txc config env list (or similar)
- Command returns list of environments they have access to
- User copies the URL they want
- User runs:
txc config profile create --url <URL>
This would complete the profile creation workflow without requiring external tools or manual lookup.
Additional Context
Currently, users must already know the environment URL to create a profile. A discovery command would make the setup process more user-friendly and discovery-based rather than requiring upfront knowledge of environment URLs. As a workaround Im using prompt use pac to list environments and then using txc connect to devbox xxxx
Description
Add a command to list available Dataverse environments that the user has access to, similar to the
pac env listfunctionality from the Power Platform CLI.Motivation
This would help users discover available environments before creating profiles. Currently, users need to know or look up the exact environment URL before running
txc config profile create --url <URL>. Having a discovery command would streamline the profile creation workflow.Proposed Solution
Add a new command like:
or
This should display available environments with details like:
Use Case
txc config env list(or similar)txc config profile create --url <URL>This would complete the profile creation workflow without requiring external tools or manual lookup.
Additional Context
Currently, users must already know the environment URL to create a profile. A discovery command would make the setup process more user-friendly and discovery-based rather than requiring upfront knowledge of environment URLs. As a workaround Im using prompt
use pac to list environments and then using txc connect to devbox xxxx