Deployment and Infrastructure Management Services Flashcards

1
Q

CloudFormation

A

CloudFormation allows you to provision AWS resources using Infrastructure as Code (IaC)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

JSON Script: Format example

A

“MyBucket” : {
“Type” : “AWS::S3::Bucket”
}

JSON Script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Infrastructure as Code (IaC)

A

IaC allows you to write a script to provision AWS resources. The benefit is that you provision resources in a reproducible manner that saves time.

Script can be written in JSON or YAML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

YAML Script: Format Example

A

MyBucket:
Type: AWS::S3::Bucket

YAML Script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Elastic Beanstalk

A

Elastic Beanstalk allows you to deploy your web applications and web services to AWS.

Orchestration service that provisions resources. Automatically handles the deployment.

Quickly deploy a scalable Java-based web application to AWS.

Don’t forget Elastic Beanstalk is only used to deploy applications to the AWS Cloud — it is not used to deploy applications on-premises

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

OpsWorks

A

OpsWorks allows you to use Chef or Puppet to automate the configuration of your servers and deploy code.

Deploy code and manage applications. Manage on-premises servers or EC2 instances in AWS Cloud. Works with Chef and Puppet automation platforms.

OpsWorks in the Real World: Automate software configurations and infrastructure management for your application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly