`
sillycat
  • 浏览: 2551978 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

AMAZON and CloudFormation(1)Introduction

 
阅读更多
AMAZON and CloudFormation(1)Introduction

IaaS - Infrastructure as a service
PaaS - Platform as a service
SaaS - Software as a service

CloudFormation
Template is a JSON, it will list all the resources you need for your app.
{
    “AWSTemplateFormatVersion” : “2010-09-09”, //Template version
    “Description”: “for Serverless application”, //usage for this template
    “Parameters”: {
    }, // parameters we need for this template, it can be empty
    “Resources” : {
    }, // AWS resource and their relation
    “Outputs” : {
    } // resource information output
}

What resource are we using in my case:
ServerlessDeploymentBucket
WatchLogGroup
IamRoleLambdaExecution
WatchLambdaFunction

All the template by AWS
https://aws.amazon.com/cloudformation/aws-cloudformation-templates/

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/sample-templates-services-us-west-2.html
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/CHAP_TemplateQuickRef.html

Stack
Stack can create the AWS resource according to your JSON/YAML template.

CloudFormer
Tool to create CloudFormation Template



References:
http://www.cnblogs.com/huang0925/p/3384596.html


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics