- Overview
- Getting Started Guide
- UserGuide
-
References
-
ABEJA Platform CLI
- CONFIG COMMAND
- DATALAKE COMMAND
- DATASET COMMAND
- TRAINING COMMAND
-
MODEL COMMAND
- check-endpoint-image
- check-endpoint-json
- create-deployment
- create-endpoint
- create-model
- create-service
- create-trigger
- create-version
- delete-deployment
- delete-endpoint
- delete-model
- delete-service
- delete-version
- describe-deployments
- describe-endpoints
- describe-models
- describe-service-logs
- describe-services
- describe-versions
- download-versions
- run-local
- run-local-server
- start-service
- stop-service
- submit-run
- update-endpoint
- startapp command
- SECRET COMMAND
- SECRET VERSION COMMAND
-
ABEJA Platform CLI
- FAQ
- Appendix
get
Description
Get detailed information about a specific secret by its ID.
Synopsis
$ abeja secret get [--help]
Usage: abeja secret get [OPTIONS]
Get a specific secret
Options:
-s, --secret_id, --secret-id TEXT
Secret ID [required]
--organization_id, --organization-id TEXT
Organization ID. If not specified, the current
organization ID is used.
--help Show this message and exit.
Options
-s
, --secret_id
, --secret-id
Specify the ID of the secret you want to retrieve. This option is required.
--organization_id
, --organization-id
Specify the organization ID. If not specified, the current organization ID from the configuration is used.
Example
Get a specific secret by ID
Command:
$ abeja secret get --secret-id secret-abcdef123456
Output:
{
"id": "secret-abcdef123456",
"name": "database-password",
"description": "Password for production database",
"created_at": "2023-05-01T10:30:00.000000Z",
"updated_at": "2023-05-01T10:30:00.000000Z",
"expired_at": "2025-05-01T10:30:00.000000Z",
"versions": [
{
"version": 1,
"value": "my-secure-password",
"created_at": "2023-05-01T10:30:00.000000Z"
}
]
}