- 概要
- スタートアップガイド
- ユーザガイド
-
リファレンス
-
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
list
説明
組織内のすべてのシークレットをページネーションオプション付きで一覧表示します。
概要
$ abeja secret list [--help]
Usage: abeja secret list [OPTIONS]
List secrets in organization
Options:
-o, --offset INTEGER Offset for pagination. Default: 0
-l, --limit INTEGER Limit for pagination (1-100). Default: 50
--organization_id, --organization-id TEXT
Organization ID. If not specified, the current
organization ID is used.
--help Show this message and exit.
オプション
-o
, --offset
ページングのためのオフセットを指定します。デフォルトは 0 です。
-l
, --limit
ページングのためのリミットを指定します。値は 1 ~ 100 の間である必要があります。デフォルトは 50 です。
--organization_id
, --organization-id
組織 ID を指定します。指定しない場合は、設定から現在の組織 ID が使用されます。
例
組織内のすべてのシークレットを一覧表示
コマンド:
$ abeja secret list
出力:
{
"secrets": [
{
"id": "secret-abcdef123456",
"name": "database-password",
"description": "プロダクションデータベースのパスワード",
"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"
}
]
},
{
"id": "secret-ghijkl789012",
"name": "api-key",
"description": "外部サービス用APIキー",
"created_at": "2023-04-15T14:20:00.000000Z",
"updated_at": "2023-04-15T14:20:00.000000Z",
"expired_at": null,
"versions": [
{
"version": 1,
"value": "sk_test_abcdefghijklmnopqrstuvwxyz",
"created_at": "2023-04-15T14:20:00.000000Z"
}
]
}
],
"offset": 0,
"limit": 50,
"has_next": false
}
ページネーションを使用したシークレットの一覧表示
コマンド:
$ abeja secret list --offset 10 --limit 20
出力:
{
"secrets": [
...
],
"offset": 10,
"limit": 20,
"has_next": false
}