questions Flashcards

1
Q
  1. What is Infrastructure as Code?
A

You write and execute the code to define, deploy, update, and destroy your infrastructure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. What are the benefits of IaC?
A

a. Automation
We can bring up the servers with one script and scale up and down based on our load with the same script.

b. Reusability of the code
We can reuse the same code

c. Versioning
We can check it into version control and we get versioning. Now we can see an incremental history of who changed what, how is our infrastructure actually defined at any given point of time, and we have this transparency of documentation

IaC makes changes idempotent, consistent, repeatable, and predictable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. How using IaC make it easy to provision infrastructure?
A

IaC makes it easy to provision and apply infrastructure configurations, saving
time. It standardizes workflows across different infrastructure providers (e.g.,
VMware, AWS, Azure, GCP, etc.) by using a common syntax across all of them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. What is Ideompodent in terms of IaC?
A

The idempotent characteristic provided by IaC tools ensures that, even if the same
code is applied multiple times, the result remains the same.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. What are Day 0 and Day 1 activities?
A

IaC can be applied throughout the lifecycle, both on the initial build, as well as
throughout the life of the infrastructure. Commonly, these are referred to as Day
0 and Day 1 activities. “Day 0” code provisions and configures your initial
infrastructure.“Day 1” refers to OS and application configurations you apply after
you’ve initially built your infrastructure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. What are the use cases of Terraform?
A
Heroku App Setup
Multi-Tier Applications
Self-Service Clusters
Software Demos
Disposable Environments
Software Defined Networking
Resource Schedulers
Multi-Cloud Deployment
Multi-Cloud Deployment
How well did you know this?
1
Not at all
2
3
4
5
Perfectly