mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
31 lines
580 B
YAML
31 lines
580 B
YAML
- 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
|