certbot-route53 icon indicating copy to clipboard operation
certbot-route53 copied to clipboard

Helping create Let's Encrypt certificates for AWS Route53

Results 12 certbot-route53 issues
Sort by recently updated
recently updated
newest added

Not sure where the fault lies... I think it's certbot.... This works: sh ./certbot-route53.sh \ --expand \ --agree-tos \ --manual-public-ip-logging-ok \ --domains www.mylinuxguy.org,mylinuxguy.org \ --cert-name mylinuxguy.org \ --keep-until-expiring \ --reinstall...

I get the following error: ./certbot-route53.sh: 29: ./certbot-route53.sh: Syntax error: redirection unexpected when trying to run: sh certbot-route53.sh \ --agree-tos \ --manual-public-ip-logging-ok \ --domains testing.ec-internal.com \ --email [email protected] Please help

FYI the `-r` option is only available in the GNU version of sed, symptoms include: ``` sed: illegal option -- r ``` On macOS this can be corrected by running...

**Description** `certbot-route53.sh` has bash-specific features, see #2. Per documentation: ``` 3. Download the certbot-route53.sh script. +++ chmod a+x certbot-route53.sh 4. Run the script with your (comma-separated) domain(s) and email address:...

You chmod +x the file and then call it with `sh`....

Changed working directory to use standard path so cronjobs can run against the new certificate. Changed the Hosted Zone look up to use recursion so subdomains can be used, eg,...

Thanks for this script. I realized that the internal sed command does not work when the host name is made up of more than three levels, for example: mail.external.example.com should...

Here is `certbot53`, a script I wrote to use this project: ``` #!/bin/bash #STAGING=--staging CERT_DIR=/etc/pound/certbot DOMAIN=scalacourses.com MAIL_ADDR='[email protected]' SCRIPT_NAME=certbot-route53.sh if [ ! -d "$CERT_DIR/letsencrypt" ]; then sudo mkdir -p $CERT_DIR/letsencrypt; fi...

Thanks for this script, it is perfectly working ... but for creation only ! Il would be great if it can also work for renewal. I give a try replacing...

Hi I try to install this package using PIP on Fedora 26 and get this: # pip install -U certbot-route53 ... Installing collected packages: setuptools, zope.interface, ConfigArgParse, six, configobj, pytz,...