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
分享到:
相关推荐
Wazuh for Amazon AWS Cloudformation 该存储库包含CloudFormation模板和配置脚本,以在Amazon Web Services(AWS)中部署Wazuh生产就绪环境和Wazuh演示环境: 生产就绪环境: 一个VPC,具有两个子网,一个用于...
带有AWS Cloudformation和AWS CDK的Amazon EKS Amazon EKS云信息模板和AWS CDK示例的参考架构 该项目旨在通过简单地启动带有嵌套堆栈的cloudformation模板,或简单地使用我们通过AWS CDK进行cdk deploy ,来帮助您...
CloudFormation是Amazon Web Services(AWS)提供的一种服务,它允许用户使用JSON或YAML格式的模板来定义和部署基础设施即代码。这些模板可以用来创建和管理AWS资源,如EC2实例、S3存储桶、RDS数据库等。而Go语言是...
1. AWS CloudFormation: AWS CloudFormation是AWS的一个基础设施即代码(IaC)服务,允许用户通过模板定义和部署AWS资源。模板是JSON或YAML格式的文件,描述了整个基础设施的配置。CloudFormation处理资源创建、...
#cfn-yaml-vs:适用于Visual Studio代码的#YAML CloudFormation模板代码段集 cfn-yaml是用于cloudformation yaml语法的vscode用户代码段文件。 该片段集是从AWS文档创建的,作为YAML内容的主要定义,并且在每个...
Ansible-ansible-role-cloudformation.zip,ansible role将任意数量的jinja2模板呈现到cloudformation文件中并创建任意数量的堆栈。,ansible是一个简单而强大的自动化引擎。它用于帮助配置管理、应用程序部署和任务...
【标题】"cloudformation-guard-源码.rar"指的是一个与Amazon CloudFormation Guard相关的源代码压缩文件。CloudFormation Guard是一款开源工具,它允许用户在创建或更新CloudFormation模板时,定义和执行自定义的...
`cloudformation-cli`可能是一个命令行工具,用于与Amazon CloudFormation服务交互,CloudFormation是AWS(亚马逊网络服务)提供的一个服务,允许用户使用模板来定义和部署基础设施即代码。 标签中提到了"zookeeper...
模板是在Amazon的AWS环境中构建资源集的一种非常强大的方法。 不幸的是,由于它们是在JSON或YAML中指定的,因此它们也很难编写和维护: JSON不允许注释,尽管CloudFormation现在支持YAML JSON / YAML模板不允许可...
资源分类:Python库 所属语言:Python 资源全名:aws-cdk.aws-cloudformation-1.138.1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
cloudformation-github-deploy@v1 with : name : MyStack template : myStack.yaml parameter-overrides : " MyParam1=myValue,MyParam2=${{ secrets.MY_SECRET_VALUE }} " 可以向该操作传递CloudFormation堆栈name...
AWS CloudFormation 是亚马逊网络服务(AWS)提供的一种基础设施即代码(Infrastructure as Code,IaC)工具,允许用户通过模板来创建、更新和删除 AWS 资源。这个“cloudformation-examples”是关于 AWS ...
Chapter 1 Container and Docker Fundamentals Chapter 2 Building Applications Using Docker Chapter 3 Getting Started with AWS Chapter 4 Introduction to ECS Chapter 5 Publishing Docker Images using ECR ...
CloudFormation是Amazon Web Services(AWS)提供的一项服务,用于自动化基础设施即代码(Infrastructure as Code,IaC)。通过使用CloudFormation,开发者和系统管理员可以创建和管理AWS资源的集合,如EC2实例、S3...
AWS CloudFormation CLI CloudFormation CLI(cfn)允许您编写自己的资源提供程序和模块,以供CloudFormation使用。 用法 文献资料 可以在站点上找到CloudFormation CLI的主要文档。 安装 可以使用Python软件包索引...
AWS CloudFormation 是亚马逊Web服务(Amazon Web Services, AWS)提供的一种基础设施即代码(Infrastructure as Code, IaC)工具,允许用户通过模板定义和部署在AWS上的计算、存储、网络等资源。这个“awesome-...
AWS CloudFormation是Amazon Web Services(AWS)提供的一种基础设施即代码(Infrastructure as Code,IaC)服务,允许用户使用模板来定义、部署和管理在AWS上的资源。通过使用CloudFormation,用户可以自动化创建和...
AWS CloudFormation Guard此存储库包含以下工具的源代码: CloudFormation Guard一个CLI工具使用简单的策略即代码声明性语法检查AWS CloudFormation模板是否符合策略可以从现有CloudFormation模板自动生成规则...
《Mastering AWS CloudFormation》是一本深度探讨亚马逊网络服务(Amazon Web Services,简称AWS)中的CloudFormation技术的专著。AWS CloudFormation是AWS提供的一种基础设施即代码(Infrastructure as Code,IaC)...
首先,"cloudformation-cli"这个名字暗示了它与Amazon CloudFormation服务有关。Amazon CloudFormation是一种服务,允许用户使用模板来定义和部署基础设施即代码(Infrastructure as Code,IaC)。通过这个CLI工具,...