You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, many thanks for updating your gem to handle v2. I'm really excited to try out wildcard certificates.
I'm running into an issue on v2.0.2 of the gem when ordering a certificate. It seems like Route53 is throwing errors because acmesmith is trying to create the same txt record twice.
Essentially i'm trying to order a certificate with the christestnew.mycompany.com as the common name and a wildcard *.christestnew.mycompany.com as an alt name.
Here's the command that I ran and the output:
> acmesmith order christestnew.mycompany.com *.christestnew.mycompany.com
=> Ordering a certificate for the following identifiers:
* christestnew.mycompany.com
* *.christestnew.mycompany.com
=> Generating CSR
=> Placing an order
=> Looking for required domain authorizations
* christestnew.mycompany.com
* christestnew.mycompany.com
=> Responsing to the challenges for the following identifier:
* Responder: Acmesmith::ChallengeResponders::Route53
* Identifiers:
- christestnew.mycompany.com (dns-01)
- christestnew.mycompany.com (dns-01)
=> Requesting RRSet change for challenge response
* /hostedzone/XXXXXXXXXXXXXX:
- UPSERT: _acme-challenge.christestnew.mycompany.com 5 TXT "u9b3NTcVRnDOJ9xIph6f4BWp7bYmzSF9eIsBR8HbSy4"
- UPSERT: _acme-challenge.christestnew.mycompany.com 5 TXT "4XQBBIkJ2xm4oBh2QcLu47Y4demHBBnJ-FGmOAVN0jc"
... /usr/local/rvm/gems/ruby-2.3.5/gems/aws-sdk-core-3.13.0/lib/seahorse/client/plugins/raise_response_errors.rb:15:in `call': The request contains an invalid set of changes for a resource record set 'TXT _acme-challenge.christestnew.mycompany.com.' (Aws::Route53::Errors::InvalidChangeBatch)
The text was updated successfully, but these errors were encountered:
yeah, i'm not sure what the right solution is.... I know some CA's automatically add the root domain as an alt name if you only request a wildcard, so I tried that... That worked and didn't give any Route53 errors, but the new LE certificate only included the wildcard hostname and not the root unfortunately.
First off, many thanks for updating your gem to handle v2. I'm really excited to try out wildcard certificates.
I'm running into an issue on v2.0.2 of the gem when ordering a certificate. It seems like Route53 is throwing errors because acmesmith is trying to create the same txt record twice.
Essentially i'm trying to order a certificate with the
christestnew.mycompany.com
as the common name and a wildcard*.christestnew.mycompany.com
as an alt name.Here's the command that I ran and the output:
The text was updated successfully, but these errors were encountered: