作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在使用 AWS API Gateway,我正在使用 CloudFormation 注册域和 A 记录,如下所示:
Domain:
Type: AWS::ApiGateway::DomainName
Properties:
# EnvironmentName starts with an upper case letter, but the domain is created anyway
DomainName: !Sub "${EnvironmentName}.mycompany.com"
# this is a single certificate, used for all envs, and must be in virginia
CertificateArn: !ImportValue DomainCertificateArn
SecurityPolicy: TLS_1_2
EndpointConfiguration:
Types:
- EDGE
ARecord:
Type: AWS::Route53::RecordSet
Properties:
HostedZoneId: Fn::ImportValue !Sub "${EnvironmentName}-HostedZoneId"
# resolves to Z032215012YHJZINBEW
Type: A
Name: !Ref Domain
AliasTarget:
DNSName: !GetAtt Domain.DistributionDomainName
HostedZoneId: !GetAtt Domain.DistributionHostedZoneId
但是,在我的环境中运行此程序时,我看到以下错误:
Unable to retrieve DistributionHostedZoneId attribute for AWS::ApiGateway::DomainName
我在 API Gateway 控制台中查看了此域条目,它确实存在,类型为 EDGE,并且存在所有其他参数。但是,托管区域 ID 与模板中使用的值不同。
最佳答案
根据documentation您应该能够从 AWS::ApiGateway::DomainName 的 distributionHostedZoneId
属性获取此值资源。
根据文档和您的文件,似乎没有任何配置不正确,文档中还有关于 DistributionHostedZoneId
的这一行。
The only valid value is Z2FDTNDATAQYW2 for all regions.
这是 CloudFront 分配 ID(当您使用区域时),因此您可以专门设置此值。否则验证它是否被创建为 EDGE
自定义域。
关于amazon-web-services - AWS ApiGateway:无法检索 AWS::ApiGateway::DomainName 的 DistributionHostedZoneId 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63518942/
我们正在使用 AWS API Gateway,我正在使用 CloudFormation 注册域和 A 记录,如下所示: Domain: Type: AWS::ApiGateway::Dom
我是一名优秀的程序员,十分优秀!