【发布时间】:2022-01-11 05:07:51
【问题描述】:
我收到“模板格式错误:必须定义至少一个资源成员”。当我尝试将模板文件上传到 cloudFormation 以允许我的 EKS 集群上的外部 DNS 时出错 我要上传的文件是
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets"
],
"Resource": [
"arn:aws:route53:::hostedzone/*"
]
},
{
"Effect": "Allow",
"Action": [
"route53:ListHostedZones",
"route53:ListResourceRecordSets"
],
"Resource": [
"*"
]
}
]
}
Obviously I'm pretty new to this..can anybody give me a clue to where I am going wrong?
【问题讨论】:
-
进展如何?仍然不清楚你能做什么?
标签: amazon-cloudformation amazon-eks