plugin
plugin
vault plugin 명령은 Vault의 플러그인과 플러그인 카탈로그(plugin catalog)를 다루는 하위 명령들을 묶어 주는 그룹 명령입니다.
출처: 문서
본문
이 명령은 Vault의 플러그인과 플러그인 카탈로그를 상호작용하기 위한 하위 명령으로 구성됩니다.
예제 (Examples)
카탈로그의 모든 시크릿 플러그인을 나열합니다:
$ vault plugin list secret
Name Version
---- -------
ad v0.14.0+builtin
alicloud v0.13.0+builtin
...
새 시크릿 플러그인을 카탈로그에 등록합니다:
$ vault plugin register \
-sha256=d3f0a8be02f6c074cf38c9c99d4d04c9c6466249 \
secret my-custom-plugin
Success! Registered plugin: my-custom-plugin
-download 로 플러그인을 등록합니다 (Enterprise):
$ vault plugin register
-download \
-version=0.16.0+ent \
secret \
vault-plugin-secrets-keymgmt
카탈로그에 있는 플러그인의 정보를 가져옵니다:
$ vault plugin info secret my-custom-plugin
Key Value
--- -----
args []
builtin false
command my-custom-plugin
deprecation_status n/a
name my-custom-plugin
oci_image n/a
runtime n/a
sha256 33e72f3d30ff2acdbf3cf3c8fa1c8945b60dab876c4226ab25617a63c9f16cc5
version n/a
사용법 (Usage)
Usage: vault plugin <subcommand> [options] [args]
# ...
Subcommands:
deregister Deregister an existing plugin in the catalog
info Read information about a plugin in the catalog
list Lists available plugins
register Registers a new plugin in the catalog
reload Reload mounted plugin backend
reload-status Get the status of an active or recently completed global plugin reload
하위 명령에 대한 더 자세한 정보, 예제, 사용법을 보려면 사이드바에서 하위 명령 이름을 클릭하세요.