Vault CLI 명령을 알고 있는 경우 해당 cURL 명령을 가져오는 방법은 무엇입니까?
vault auth enable oidc
라는 명령이 있다면, 대응하는 API 호출을 어떻게 아십니까?이렇게:vault auth disable -output-curl-string oidc
다음 예는 다음과 같습니다.$ vault auth enable oidc
Success! Enabled oidc auth method at: oidc/
$ vault auth disable oidc
Success! Disabled the auth method (if it existed) at: oidc/
$ vault auth enable -output-curl-string oidc
curl -X POST -H "X-Vault-Request: true" -H "X-Vault-Token: $(vault print token)"
-d '{"type":"oidc","description":"","config":{"options":null,"default_lease_ttl
":"0s","max_lease_ttl":"0s","force_no_cache":false},"local":false,"seal_wrap":fa
lse,"external_entropy_access":false,"options":null}' http://127.0.0.1:8200/v1/sy
s/auth/oidc
$ vault auth disable -output-curl-string oidc
curl -X DELETE -H "X-Vault-Request: true" -H "X-Vault-Token: $(vault print token
)" http://127.0.0.1:8200/v1/sys/auth/oidc
Vault API를 사용하여 기밀 정보를 가져오거나 생성하는 간단한 방법에 대한 자세한 내용은 다음 링크를 사용하는 것이 좋습니다.https://www.slideshare.net/mitchp/vault-secrets-via-api-for-the-rest-of-us
Reference
이 문제에 관하여(Vault CLI 명령을 알고 있는 경우 해당 cURL 명령을 가져오는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/v6/if-i-know-a-vault-cli-command-how-do-i-get-its-curl-command-4o85텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)