late-journalist-61387
09/26/2023, 12:11 PM* creating ELBv2 Listener ***** UnsupportedCertificate: The certificate ***** must have a fully-qualified domain name, a supported signature, and a supported key size.
After searching the internet, I found it is because the certification is in Pending Validation State, and if you run the pulumi up
next time, the resource will create successfully
https://stackoverflow.com/questions/72227832/certificate-must-have-a-fully-qualified-domain-name-a-supported-signature-and
so, we need to wait until the status of the certification became "Issued" and then the create the listener. how can I do this in pulumi?
here is the full source code
https://gist.github.com/atazangene/03ca0c4cfd532ebc9949e1012dc695a9dry-keyboard-94795
09/26/2023, 1:01 PM