From 818a9993c0b0f9c236329242465920f180500065 Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sat, 13 May 2023 23:36:13 -0400 Subject: [PATCH 1/7] Nothing playbook --- ansible/nothing-playbook.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ansible/nothing-playbook.yml diff --git a/ansible/nothing-playbook.yml b/ansible/nothing-playbook.yml new file mode 100644 index 0000000..5b6cdf2 --- /dev/null +++ b/ansible/nothing-playbook.yml @@ -0,0 +1,9 @@ +--- + - name: The Nothing Playbook + hosts: localhost + connection: local + + tasks: + - name: Print Message + ansible.builtin.debug: + msg: 'Playbook succeeded' \ No newline at end of file From d7d3321f22668f20cdd3baad420f941f8ab7670b Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sat, 13 May 2023 23:39:20 -0400 Subject: [PATCH 2/7] New line --- ansible/nothing-playbook.yml | 2 +- ansible/storage/azr_download_sa.yml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 ansible/storage/azr_download_sa.yml diff --git a/ansible/nothing-playbook.yml b/ansible/nothing-playbook.yml index 5b6cdf2..f640260 100644 --- a/ansible/nothing-playbook.yml +++ b/ansible/nothing-playbook.yml @@ -6,4 +6,4 @@ tasks: - name: Print Message ansible.builtin.debug: - msg: 'Playbook succeeded' \ No newline at end of file + msg: 'Playbook succeeded' diff --git a/ansible/storage/azr_download_sa.yml b/ansible/storage/azr_download_sa.yml new file mode 100644 index 0000000..a6d7b03 --- /dev/null +++ b/ansible/storage/azr_download_sa.yml @@ -0,0 +1,7 @@ +--- + - name: Download File from Storage Account + hosts: localhost + connection: local + + tasks: + - name: \ No newline at end of file From 0ec3217cbe3d07082359bb700c04a21ac8a03081 Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sat, 13 May 2023 23:40:20 -0400 Subject: [PATCH 3/7] Spacing --- ansible/nothing-playbook.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ansible/nothing-playbook.yml b/ansible/nothing-playbook.yml index f640260..5e1f23e 100644 --- a/ansible/nothing-playbook.yml +++ b/ansible/nothing-playbook.yml @@ -1,9 +1,9 @@ --- - - name: The Nothing Playbook - hosts: localhost - connection: local +- name: The Nothing Playbook + hosts: localhost + connection: local - tasks: - - name: Print Message - ansible.builtin.debug: - msg: 'Playbook succeeded' + tasks: + - name: Print Message + ansible.builtin.debug: + msg: 'Playbook succeeded' From 37ffed92fa02be044d465a3154791fe4b1b41b79 Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sat, 13 May 2023 23:42:58 -0400 Subject: [PATCH 4/7] Broken --- ansible/storage/azr_download_sa.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ansible/storage/azr_download_sa.yml b/ansible/storage/azr_download_sa.yml index a6d7b03..dfd29c3 100644 --- a/ansible/storage/azr_download_sa.yml +++ b/ansible/storage/azr_download_sa.yml @@ -1,7 +1,9 @@ --- - - name: Download File from Storage Account - hosts: localhost - connection: local +- name: Download File from Storage Account + hosts: localhost + connection: local - tasks: - - name: \ No newline at end of file + tasks: + - name: fix me + ansible.builtin.debug: + msg: "fix this" \ No newline at end of file From 98af27d60268544c5379d94e3ecee615fa4ec08f Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sat, 13 May 2023 23:43:40 -0400 Subject: [PATCH 5/7] Spacing --- ansible/storage/azr_download_sa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/storage/azr_download_sa.yml b/ansible/storage/azr_download_sa.yml index dfd29c3..ef9943e 100644 --- a/ansible/storage/azr_download_sa.yml +++ b/ansible/storage/azr_download_sa.yml @@ -6,4 +6,4 @@ tasks: - name: fix me ansible.builtin.debug: - msg: "fix this" \ No newline at end of file + msg: "fix this" From 465277561b33f150b94bceeeb211f0b3e8e84d3a Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sat, 13 May 2023 23:45:14 -0400 Subject: [PATCH 6/7] deleted playbook that shouldn't be here --- ansible/storage/azr_download_sa.yml | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 ansible/storage/azr_download_sa.yml diff --git a/ansible/storage/azr_download_sa.yml b/ansible/storage/azr_download_sa.yml deleted file mode 100644 index ef9943e..0000000 --- a/ansible/storage/azr_download_sa.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -- name: Download File from Storage Account - hosts: localhost - connection: local - - tasks: - - name: fix me - ansible.builtin.debug: - msg: "fix this" From a5e6e0e25c260dd6061b231cec905fef48cc646e Mon Sep 17 00:00:00 2001 From: Trey Phillips Date: Sun, 14 May 2023 10:36:46 -0400 Subject: [PATCH 7/7] Added var --- ansible/nothing-playbook.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/nothing-playbook.yml b/ansible/nothing-playbook.yml index 5e1f23e..ae7a139 100644 --- a/ansible/nothing-playbook.yml +++ b/ansible/nothing-playbook.yml @@ -7,3 +7,7 @@ - name: Print Message ansible.builtin.debug: msg: 'Playbook succeeded' + + - name: Print Variable + ansible.builtin.debug: + var: '{{ example_var | default('default') }}' \ No newline at end of file