gpt4 book ai didi

amazon-web-services - AWS ApiGateway:无法检索 AWS::ApiGateway::DomainName 的 DistributionHostedZoneId 属性

转载 作者:行者123 更新时间:2023-12-03 07:42:17 25 4
gpt4 key购买 nike

我们正在使用 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::DomainNamedistributionHostedZoneId 属性获取此值资源。

根据文档和您的文件,似乎没有任何配置不正确,文档中还有关于 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com