CloudFormation cfn-init.exe命令

时间:2016-05-22 21:24:00

标签: amazon-web-services amazon-cloudformation

我在userdata脚本的开头看到了以下代码。它的用途是什么?

if (${PROXY}) {
    &"cfn-init.exe" -v -s ${STACK_ID} -r ${RESOURCE} --region ${REGION} --http-proxy=${PROXY} --https-proxy=${PROXY}
} else {
    write-host "Unable to determine Proxy setting"
    &"cfn-init.exe" -v -s ${STACK_ID} -r ${RESOURCE} --region ${REGION}
}

1 个答案:

答案 0 :(得分:0)

" CFN-init.exe"是一个来自cloudformation的实用程序,用于执行在cloudformation模板中定义的实例初始化配置。

这确保了在" AWS :: CloudFormation :: Init"下定义的服务器初始化配置。执行云形成模板内的部分。

请查看以下文档以供参考 http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-init.html