gpt4 book ai didi

json - 使用输出部分创建 Cloudformation 堆栈时无输出

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

使用 S3 存储桶创建堆栈时,当我创建此堆栈时,我没有从 Cloudformation 获得输出。我缺少什么?

{                 
"Resources" : {
"S3BKT" : {
"Type" : "AWS::S3::Bucket",
"DeletionPolicy" : "Retain",
"Properties" : {
"AccessControl" : "PublicRead",
"WebsiteConfiguration" : {
"IndexDocument" : "index.html",
"ErrorDocument" : "error.html"
}
}
}
},
"Outputs" : {
"WebsiteURL" : {
"Value" : { "Fn::GetAtt" : [ "S3BKT", "WebsiteURL" ] },
"Description" : "URL for website hosted on S3"
}
}
}

最佳答案

上传此模板并出现错误:

Fn::GetAtt 中不支持属性类型访问控制

删除了PublicRead并替换为PublicReadWrite,我得到了输出。再次使用 PublicRead 重新运行模板并获得输出。

super 奇怪。但它奏效了。感谢 Marcin 的回复!

关于json - 使用输出部分创建 Cloudformation 堆栈时无输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61194505/

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