Skip to content

Commit c4211ef

Browse files
authored
Create download-file-register-content.yml
1 parent 3ca53ef commit c4211ef

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- name: play
2+
hosts: alpine-example-com
3+
tasks:
4+
- name: download file
5+
get_url:
6+
url: https://api.github.com/
7+
dest: /tmp
8+
register: downloaded_file
9+
- name: print last task output
10+
debug:
11+
var: downloaded_file
12+

0 commit comments

Comments
 (0)