DEV Community

Discussion on: Configure SSL Certificate — AWS Elastic Beanstalk (Single Instance)

Collapse
 
huguesgauthier profile image
Hugues Gauthier

Yum does not have mod24_ssl available for installation

Collapse
 
paticopro profile image
Patico

There is a workaround for getting certbot at Amazon Linux 2:

sudo wget -r --no-parent -A 'epel-release-*.rpm' http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/
sudo rpm -Uvh dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-*.rpm
sudo yum-config-manager --enable epel*
sudo yum repolist all
sudo yum install -y certbot
Enter fullscreen mode Exit fullscreen mode

Found it at Amazon docs: docs.aws.amazon.com/AWSEC2/latest/...