本文介绍了将用户数据文件传递到AWS Cloudformation堆栈的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个shell脚本(用户数据文件),想知道是否有一个CLI命令参数可让用户使用用户数据文件启动Cloudformation堆栈?
I have a shell script(userdata file) and wondering is there a CLI command parameter that allows user to launch Cloudformation stack with userdata file?
推荐答案
在模板中,为实例userdata使用CloudFormation参数:
Inside your template, use a CloudFormation parameter for the instance userdata:
{
"Parameters": {
"UserData": {
"Type": "String"
}
},
"Resources": {
"Instance": {
"Type" : "AWS::EC2::Instance",
"Properties" : {
"UserData" : { "Ref" : "UserData" },
...
}
},
...
}
}
假设您使用的是类似Unix的命令行环境,请按以下方式创建堆栈:
Assuming you're using a Unix-like command line environment, create your stack like this:
aws cloudformation create-stack --stack-name myStack \
--template-body file://myStack.json \
--parameters ParameterKey=UserData,ParameterValue=$(base64 -w0 userdata.sh)
这篇关于将用户数据文件传递到AWS Cloudformation堆栈的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!