You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 2/Readme.md
+10-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Intro to Ansible
2
2
3
+
This introduction to Ansible is based on my personal experiences.
4
+
5
+
I will not compare Ansible to other automation tools/frameworks! There may be some out there that can replace Ansible - but I haven't got much experience using other ones.
6
+
3
7
----
4
8
5
9
## Sources
@@ -20,13 +24,13 @@ There is also an Open-Source web-based control-environment named ['Ansible AWX']
20
24
21
25
For enterprise-use RedHat offers a product named ['Ansible Automation Platform'](https://www.redhat.com/en/technologies/management/ansible) that is Closed-Source and must be licensed.
22
26
23
-
### Arguments
27
+
### Key points
24
28
25
29
**Practical examples** of use-cases are:
26
30
* Provisioning/managing IT-services from small- up to large-scale
@@ -148,6 +152,9 @@ That can catch user- or configuration-errors before they have any negative impac
148
152
* Sensitive data can also be protected from being logged in clear-text using the ['no_log' parameter](https://docs.ansible.com/ansible/latest/reference_appendices/logging.html).
149
153
Most Modules also implement this for secrets you pass to them.
150
154
* Secrets that are [prompted at runtime](https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_prompts.html#hashing-values-supplied-by-vars-prompt) can also be encrypted.
155
+
***Configuration**
156
+
* Working with complex configurations that require [multiple scopes](https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_variables.html#scoping-variables) (_host, group, role, execution, ..._) can be challenging when using raw scripting.
157
+
Ansible handles much of the mind-boggling logic in the background so we as admins/users don't have to deal with it.
Copy file name to clipboardExpand all lines: README.md
+7
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,13 @@
4
4
5
5
# Info
6
6
7
+
> **Warning:**
8
+
>
9
+
> If you find any **discrepancy, errors or missing information** in these tutorials - please feel free to open a [GitHub issue](https://github.com/ansibleguy/ansible_tutorial/issues)!
10
+
>
11
+
> These tutorials are subjective as they are based on my personal experience.
12
+
13
+
7
14
I am creating videos on my [YouTube Channel](https://www.youtube.com/@ansibleguy) that target the topics listed below!
0 commit comments