binxio/cfn-certificate-provider

IssuedCertificate DependsOn

JstDust opened this issue · 1 comments

I noticed that it can take a while in bigger stacks for thing to complete this can be improved by adding the following to IssuedCertificate.

DependsOn:
  - DomainValidationRecord

Doing so will force CF to execute them sequentially instead of executing them concurrently with other resources. And since there is no point in waiting on issued cert until the record is added it should not cause any side effects.

thanks. I have added it.