以下命令未成功退出:
aws cloudformation package \
--template template.yml \
--s3-bucket $S3_BUCKET \
--output--template template-export.yml退出状态255。
发布于 2018-09-17 08:37:02
我注意到您提供的两个模板选项都不正确。
要获取awscli命令的帮助,可以运行:
aws <service> <command> help例如:
aws cloudformation package help执行此操作时,您将看到模板文件的选项为:
--template-file <value>
--output-template-file <value>https://stackoverflow.com/questions/52347911
复制相似问题