我尝试创建受https://github.com/aws-samples/aws-cdk-examples/blob/master/typescript/static-site/static-site.ts启发的静态网站时出现以下错误
const certificateArn = new acm.DnsValidatedCertificate(
this,
"SiteCertificateR53",
{
domainName: props.siteDomain,
hostedZone: props.zone,
region: "us-east-1", // Cloudfront only checks this region for certificates.
}
).certificateArn;
new cdk.CfnOutput(this, "CertificateR53", {value: certificateArn});
Run Code Online (Sandbox Code Playgroud)
错误:
从自定义资源收到响应状态 [FAILED]。返回消息:资源未处于证书已验证状态