Closed7

Try HashiCorp Vault

sogaohsogaoh
sogaohsogaoh

インストール
refs
https://www.vaultproject.io/docs/install

Amazon Linux WorkSpaces へのインストールが失敗

Console

❯ sudo yum -y install vault
読み込んだプラグイン:amzn_workspaces_filter_updates, halt_os_update_check, priorities, update-motd
https://rpm.releases.hashicorp.com/AmazonLinux/2/x86_64/stable/repodata/c9a8aa18b37e7a72392290df43e33c79189f8d4c-primary.xml.gz: [Errno 14] HTTPS Error 404 - Not Found
他のミラーを試します。


 One of the configured repositories failed (Hashicorp Stable - x86_64),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo=hashicorp ...

     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable hashicorp
        or
            subscription-manager repos --disable=hashicorp

     5. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=hashicorp.skip_if_unavailable=true

failure: repodata/c9a8aa18b37e7a72392290df43e33c79189f8d4c-primary.xml.gz from hashicorp: [Errno 256] No more mirrors to try.
https://rpm.releases.hashicorp.com/AmazonLinux/2/x86_64/stable/repodata/c9a8aa18b37e7a72392290df43e33c79189f8d4c-primary.xml.gz: [Errno 14] HTTPS Error 404 - Not Found


Linuxbrew で入れて凌いだ。(macOS と似たような状況にした、と思っている)
https://docs.brew.sh/Homebrew-on-Linux

sogaohsogaoh

途中、ターミナルを切り替えて試行を続けると、以下のエラーに遭遇

Error reading secret/data/mypassword: Get "https://127.0.0.1:8200/v1/secret/data/mypassword": http: server gave HTTP response to HTTPS client

Vault Users Group の Slack で質問して助けてもらい、
https://vault.connpass.com/

export VAULT_ADDR='http://127.0.0.1:8200'

を再実行したうえでリトライすればOK、とわかった。それはそう。

sogaohsogaoh
sogaohsogaoh

図5 ロールの作成 のところのコマンドコピペで微妙なハマり方をしたので記録しておく。
改行マークを含めて実行してたので後続の vault read コマンドがエラーになった。

そのときに出たエラー

Failed to parse K=V data: invalid key/value pair " ": format must be key=value

余計な文字と # 以降のコメントを削除して無事に成功。

sogaohsogaoh

MySQL の 動的シークレット、実践成功はしたが -h 127.0.0.1 を抜かして接続するとローテーション前のパスワードで入れてしまうことを知った。
ここは使い方に注意、だろうか。

このスクラップは2022/06/21にクローズされました