Automation Flashcards

1
Q

Automation Exam Tips

A
  • Lazy is good. Favor solutions that automate the entire solution, not just part of it
  • On the exam, automation is better than manual
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Cloud Formation

A
  • immutable
  • consistent
  • disposable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Cloud Formation rollback

A

Cloud Formation can rol back to the last known good state and will delete everything it created

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

Steps for Cloud Formation

A

1) write code (json or yaml)

2) deploy template

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

Cloud Formation stack

A

what Cloud Formation creates from your template

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

Cloud Formation parameters

A

variables that the person who write the template gets to ask for when Cloud Formation initializes the stack.

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

Cloud Formation template - mappings

A

allow you to specify for values required for spinning up services
- can put logic in them to be region specific

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

Cloud Formation templates - resources

A
    • hard-coded resource IDs will cause the template to fail if you try to deploy cross-region (especially hard-coded AMIs)
  • to solve: put region-specifc AMIs in the mapping section
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Elastic Beanstalk

A
  • not heavily featured on exam
  • Platform as a System -> single stop application deployment model
  • provisions, deploys and manages all of the architecture
  • builds out your EC2
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Systems Manager

A

a suite of tools designed to let you view, control, automate your AWS architecture

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

Systems Manager - automation documents

A
  • allow you to control your EC2 instances or AWS resources (aka run books)
  • usable by AWS config
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Systems Manager - Run Command

A

uses the system manager agent on your EC2 instance to run scripts and calls inside your operating system

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

Systems Manager - Patch Manager

A

schedule a time and which patch you want to install

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

Systems Manager - Parameter store

A

securely store your secret values

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

Systems Manager Hybrid Applications

A

control your on-prem architecture using systems manager - you have to install the agent on your own hardware

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

Systems Manager - Session manager

A

remotely connect and interact with your architecture

17
Q

Systems Manager - Exam tips

A

systems manager won’t get called out on exam, they will reference “automation documents”, “session manager” and “parameter store”
- if a human (admin) can do it, so can systems manager