Listing Your OKS Profiles
You can list your OKS profiles using OKS CLI.
Listing Your OKS Profiles Using OKS CLI
| Before you begin: Install and configure OKS CLI. For more information, see Installing and Configuring OKS CLI. | 
The profile list command lists all the available profiles for a given OUTSCALE account.
$ oks-cli profile list \
    --output jsonThis command contains the following option that you may need to specify:
- 
(optional) output: The output format for the response (json|yaml|table | `wide). By default, the response format iswide.
The profile list command returns the following elements:
- 
Profile: The name of the profile configured in OKS CLI.
- 
Account type: The type of credentials used for the authentication of the profile. Can beak/sk(for Access Key/Secret Key) orusername/password.
- 
Region: The location of the OKS endpoint used for the profile.
- 
Endpoint: The endpoint corresponding to the Region you want to send the request to. For more information, see API Endpoints Reference.
- 
Enabled JWT auth: Determines whether JWT (JSON Web Token) authentication is enabled for the profile, eithertrueorfalse.
Profile: default Account type: ak/sk Region: eu-west-2 Endpoint: https://api.eu-west-2.oks.outscale.com/api/v2/ Enabled JWT auth: False
Profile: my-second-profile Account type: username/password Region: eu-west-2 Endpoint: https://api.eu-west-2.oks.outscale.com/api/v2/ Enabled JWT auth: TrueRelated Pages