gpt4 book ai didi

amazon-web-services - 将用户数据文件传递到 AWS Cloudformation 堆栈

转载 作者:行者123 更新时间:2023-12-04 08:17:38 25 4
gpt4 key购买 nike

我有一个 shell 脚本(用户数据文件),想知道是否有一个 CLI 命令参数允许用户使用用户数据文件启动 Cloudformation 堆栈?

最佳答案

在模板内,对实例用户数据使用 CloudFormation 参数:

{
"Parameters": {
"UserData": {
"Type": "String"
}
},
"Resources": {
"Instance": {
"Type" : "AWS::EC2::Instance",
"Properties" : {
"UserData" : { "Ref" : "UserData" },
...
}
},
...
}
}

假设您使用的是类 Unix 命令行环境,请像这样创建堆栈:

aws cloudformation create-stack --stack-name myStack \
--template-body file://myStack.json \
--parameters ParameterKey=UserData,ParameterValue=$(base64 -w0 userdata.sh)

关于amazon-web-services - 将用户数据文件传递到 AWS Cloudformation 堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38195137/

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