如何使用AWS CloudFormaion模板安装IIS服务

时间:2018-12-18 17:41:28

标签: amazon-web-services iis amazon-cloudformation

基本上我想通过使用aws cloudformation模板安装iis服务及其未来和角色,请问有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

您可以在“用户数据”字段中提供PowerShell脚本。该脚本将在首次实例启动时自动运行。

那会是这样的:

"UserData" : {
    "Fn::Base64" : {
        "Fn::Join" : [
            "",
            [
                "<powershell>\n",
                "# Install IIS and Web Management Tools.\n",
                "Import-Module ServerManager\n",
                "install-windowsfeatures web-server, web-webserver\n",
                "install-windowsfeature web-mgmt-tools\n",
                "</powershell>\n"
            ]
        ]
    }
}

我刚刚从我拥有的模板中复制了此文件,因此请自己进行测试!此示例为JSON格式,但您也可以使用YAML。