-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fabien Bloume
committed
Jul 15, 2023
1 parent
74b2f24
commit d789b56
Showing
3 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# Configuration Management | ||
## Summary | ||
|
||
- Used for virtual machine OS-level configuration | ||
- Example: Configuring the internals of the VMs | ||
- Referring to package configuration & software maintenance | ||
- Ex: Configuring the internals of the VMs | ||
- Referring to package configuration & software maintenance | ||
## Tools | ||
|
||
- Puppet *(might be covered here later on)* | ||
- Ansible | ||
- Chef | ||
|
||
## OS Hardening | ||
|
||
- [OVH Debian CIS OS Hardening helper](https://github.com/ovh/debian-cis/tree/master) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# Infrastructure as Code | ||
|
||
## Summary | ||
- Used for provisioning and managing cloud resources | ||
- Example : Creating and provisioning a VM | ||
- Ex : Creating and provisioning a VM | ||
- Referring to all APIs used to deploy infrastructure | ||
|
||
- Declarative statements : the yaml configuration is a picture of the desired stage. Unlike CLI commands which are imperative and tells what to do : We can focus on how the infrastructure should be. | ||
|
||
Popular solution : Hashicorp Terraform, which is multi API / multi-cloud with an open-source core. | ||
## Tools | ||
|
||
- [Hashicorp Terraform](https://www.terraform.io/), which is multi API / multi-cloud with an open-source core. |