aws cloudformation 估计模板成本返回非工作 URL

aws cloudformation estimate-template-cost returning non-working URL

我正在尝试更熟悉使用 AWS 的成本。我正在尝试将 aws cloudformation estimate-template-cost 与 AWS 快速入门模板之一结合使用。

这是我的命令,returns a URL:

$: aws --region="us-west-2" cloudformation estimate-template-cost --template-url="https://s3.amazonaws.com/quickstart-reference/hashicorp/vault/latest/templates/quickstart-hashicorp-vault-master.template" --parameters='[{"ParameterKey":"KeyPairName","ParameterValue":"","UsePreviousValue":false},{"ParameterKey":"AccessCIDR","ParameterValue":"0.0.0.0/0","UsePreviousValue":false},{"ParameterKey":"EmailAddress","ParameterValue": "","UsePreviousValue": false},{"ParameterKey":"AvailabilityZones", "ParameterValue":"us-west-2a,us-west-2b,us-west-2c","UsePreviousValue":false}]'
{
    "Url": "http://calculator.s3.amazonaws.com/calc5.html?key=cloudformation/500b0d9e-22fd-400a-bfa3-7ad34dfeb592"
}

返回的 URL 只是将我带到成本计算器网站,没有填写任何信息,只有空白表格。

我还注意到,当我尝试在 AWS 控制台中手动启动此模板时,没有 link 可用:

我在控制台填写的参数与命令中的一致。我填写的 parameters/options 有什么问题吗?或者,我应该查找的 AWS 帐户是否有什么不允许我执行此操作?

啊,看来我只是选择了错误的模板来测试,因为这个模板只会启动 VPC 资源,而不会花费任何费用。