【Let'sEncrypt】Amazon Linux2でCertbotを使う


事象

Amazon Linux 2で従来の方法でcertbotをインストールすると
コマンド時に以下のエラーが出て使えませんでした。

Sorry, I don't know how to bootstrap Certbot on your operating system!

You will need to install OS dependencies, configure virtualenv, and run pip install manually.
Please see https://letsencrypt.readthedocs.org/en/latest/contributing.html#prerequisites
for more info.

従来の方法はこちら

解決方法

以下の方法でcertbotをインストールすれば正常に使えました。

curl -O http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo yum install epel-release-latest-7.noarch.rpm
sudo yum install certbot

参考

serverfault