mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
580 B
YAML
32 lines
580 B
YAML
6 years ago
|
- name: Create a destination local file
|
||
|
tempfile:
|
||
|
state: file
|
||
|
suffix: temp
|
||
|
delegate_to: localhost
|
||
|
register: tempfile_dst
|
||
|
|
||
|
- name: Get from bucket
|
||
|
aws_s3:
|
||
|
mode: get
|
||
|
bucket: '{{ bucket_name }}'
|
||
|
s3_url: '{{ s3_url }}'
|
||
|
region: '{{ scaleway_region }}'
|
||
|
object: test.txt
|
||
|
dest: '{{ tempfile_dst.path }}'
|
||
|
encrypt: false
|
||
|
register: get_task
|
||
|
|
||
|
- name: Show get_task
|
||
|
debug:
|
||
|
var: get_task
|
||
|
|
||
|
- name: get_task is success
|
||
|
assert:
|
||
|
that:
|
||
|
- get_task is success
|
||
|
|
||
|
- name: get_task is changed
|
||
|
assert:
|
||
|
that:
|
||
|
- get_task is changed
|