b8f0cfc38a
These tests rely on the AWS S3 modules, but will not be migrated along with those modules into an AWS collection. Since these tests will not reside in a collection alongside the modules under test they are being moved to the legacy tests directory. The legacy tests directory will soon be migrated to a separate repository.
30 lines
549 B
YAML
30 lines
549 B
YAML
- name: Create a destination file
|
|
tempfile:
|
|
state: file
|
|
suffix: temp
|
|
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
|