现在我有一个配置文件,它指定在部署我的Elastic Beanstalk应用程序时要运行的命令。其中一个命令使用certbot在Nginx中设置SSL证书。这是一个例子:
container_commands:
01run_certbot:
command: |
curl -O https://dl.eff.org/certbot-auto
chmod +x certbot-auto
sudo mv certbot-auto /usr/bin/certbot-auto
02install_certs:
command: |
certbot-auto --verbose --nginx -m admin@someemail.com -n --agree-tos --domains my-app-dev.us-east-1.elasticbeanstalk.com --debug
03restart_nginx:
command: "service nginx restart"
我想要做的是将应用程序的cname传递给certbot-auto程序,而不是将其硬编码到配置文件本身。这可能吗?