Closed. This question needs debugging details。它当前不接受答案。












想改善这个问题吗?更新问题,以使为on-topic

去年关闭。



Improve this question





我正在为S3上托管的网站编写CFT-YML文件顺利通过模板验证,但是构建代理返回以下错误:

yaml.constructor.ConstructorError: could not determine a constructor for the tag '!GetAtt'



Outputs:
  WebsiteURL:
    Value: !GetAtt RootBucket.WebsiteURL
    Description: URL for website hosted on S3

最佳答案

在没有Fn :: GetAtt速记版本的情况下尝试



Outputs:
  WebsiteURL:
    Value: Fn::GetAtt: [ RootBucket, WebsiteURL ]
    Description: URL for website hosted on S3

关于amazon-cloudformation - 无法确定标签“!GetAtt”的构造函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44786412/

10-11 06:55