设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 手机 数据 公司
当前位置: 首页 > 服务器 > 安全 > 正文

理解亚马逊 Amazon AWS CloudFormation(4)

发布时间:2020-12-31 10:47 所属栏目:53 来源:网络整理
导读:WebServerSecurityGroup : { Type : AWS::EC2::SecurityGroup, Properties : { GroupDescription : Enable HTTP access via port 80 and SSH access, SecurityGroupIngress : [ {IpProtocol : tcp,FromPort : 80,To

“WebServerSecurityGroup” : {
“Type” : “AWS::EC2::SecurityGroup”,
“Properties” : {
“GroupDescription” : “Enable HTTP access via port 80 and SSH access”,
“SecurityGroupIngress” : [
{“IpProtocol” : “tcp”,“FromPort” : “80”,“ToPort” : “80”,“CidrIp” : “0.0.0.0/0”},
{“IpProtocol” : “tcp”,“FromPort” : “22”,“ToPort” : “22”,“CidrIp” : { “Ref” : “SSHLocation”}}
]
}
}
},

//用户自定义的输出.这个是Stack创建完成了之后,暴露给外部访问的入口.
//如这里的一个Output为Wordpress安装好了之后的访问地址.
//同学们可能会由疑问,Wordpress在哪里安装好的呢?在AMI镜像包中包含了Wordpress安装包!
“Outputs” : {
“WebsiteURL” : {
“Value” : { “Fn::Join” : [“”,[“http://”,{ “Fn::GetAtt” : [ “WebServer”,“PublicDnsName” ]},“/wordpress”]] },
“Description” : “WordPress Website”
}
}
}

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读