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.
20 lines
388 B
YAML
20 lines
388 B
YAML
6 years ago
|
- name: Create a local file
|
||
|
tempfile:
|
||
|
state: file
|
||
|
suffix: temp
|
||
|
delegate_to: localhost
|
||
|
register: tempfile
|
||
|
|
||
|
- import_tasks: aws_s3_create.yml
|
||
|
|
||
|
- import_tasks: aws_s3_put.yml
|
||
|
- import_tasks: aws_s3_get.yml
|
||
|
|
||
|
- import_tasks: aws_s3_getstr.yml
|
||
|
- import_tasks: aws_s3_geturl.yml
|
||
|
- import_tasks: aws_s3_list.yml
|
||
|
|
||
|
- import_tasks: aws_s3_delobj.yml
|
||
|
|
||
|
- import_tasks: aws_s3_delete.yml
|