busy-umbrella-36067
01/22/2019, 12:15 AMaws.acm.Certificate.domainValidationOptions
with the aws provider?
The below does not work.
// create wildcard certificate
let awsCertificate = await new aws.acm.Certificate("XXXXXXX", {
domainName: `*.rpc.${environment.dns}`,
validationMethod: 'DNS'
})
let certVerificationRecord = new aws.route53.Record("XXXXXXX", {
name: awsCertificate.domainValidationOptions.resourceRecordName,
records: [awsCertificate.domainValidationOptions.resourceRecordValue],
type: "TXT",
zoneId: hostedZone.id,
ttl: 300
});
stocky-spoon-28903
01/22/2019, 12:18 AMbusy-umbrella-36067
01/22/2019, 12:20 AMnull
stocky-spoon-28903
01/22/2019, 12:26 AMbusy-umbrella-36067
01/22/2019, 12:27 AMawsCertificate.domainValidationOptions.apply
stocky-spoon-28903
01/22/2019, 12:28 AMbusy-umbrella-36067
01/22/2019, 12:31 AM.apply
is still needed though.stocky-spoon-28903
01/22/2019, 12:32 AM