When creating an acm.Certificate, for the validati...
# general
b
When creating an acm.Certificate, for the validations I use to do something like
Copy code
validations = [domainName, ...subjectAlternativeNames]
validationRecords = validations.map((domain, i) => new aws.route53.Record(`vr${i}`, { 
  name: cert.domainValidationOptions[i].resourceRecordName,
...
})
it seems like the aws.Certificate.domainValidationOptions[] ordering no longer matches my validations array. Is there a way to deterministically create the validation records?