Skip to content

Commit 303cc46

Browse files
committed
updated the names of directory
1 parent c9ea72b commit 303cc46

File tree

30 files changed

+60
-0
lines changed

30 files changed

+60
-0
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

part-9-ansible-conditionals/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Run playbook
2+
3+
```bash
4+
ansible-playbook --inventory inventory/ansible-conditionals-playbook/hosts ansible-conditionals-playbook.yml
5+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
- name: Example Ansible playbook for Handlers
3+
hosts: all
4+
become: yes
5+
remote_user: ubuntu
6+
roles:
7+
- custom-role
8+
9+
10+
11+
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[default]
2+
ec2-3-76-215-219.eu-central-1.compute.amazonaws.com ansible_ssh_private_key_file=/Users/rahulwagh/.ssh/aws_ec2_terraform

part-9-ansible-conditionals/roles/custom-role/tasks/main.yml

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
var_file_variable: "Hello, world in main var.yml!"

0 commit comments

Comments
 (0)