「Vault」:修訂間差異

出自Gea-Suan Lin's Wiki
跳至導覽 跳至搜尋
本頁面具有訪問限制。如果您看見此訊息,這代表您沒有訪問本頁面的權限。
行 14: 行 14:
</syntaxhighlight>
</syntaxhighlight>


 如果還在測試而沒有HTTPS的情況下,可以加上<code>-address=http://127.0.0.1:8200/</code>:
 如果還在測試而沒有HTTPS的情況下,可以加上<code>-address=http://127.0.0.1:8200/</code> (或是對應的位置)


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">

於 2020年12月29日 (二) 09:13 的修訂

Vault是一套由HashiCorp開發的密碼管理軟體。

概要

Vault可以拿來存放各類credential資料,像是Key或是Password,這個方法比Twelve-Factor App methodology所提到的方法(利用環境變數)安全許多。

AppRole[1]

建立

先產生AppRole:

vault write auth/approle/role/example_role token_policies="example_policy1,example_policy2"

如果還在測試而沒有HTTPS的情況下,可以加上-address=http://127.0.0.1:8200/(或是對應的位置):

vault write -address=http://127.0.0.1:8200/ auth/approle/role/example_role token_policies="example_policy1,example_policy2"

讀取role-id

vault read auth/approle/role/example_role/role-id

產生對應的secret-id

vault write -f auth/approle/role/example_role/secret-id

使用

這邊使用HTTPie產生JSON request:

http https://vault.example.com/v1/auth/approle/login role_id=x secret_id=y

回傳的client_token就可以拿來使用。

相關連結

參考文獻

  1. AppRole Pull Authentication. [2020-07-29] (English). 

外部連結