On 21.06.2017 02:44, Michael Bushey wrote:
> - name: AWS Bucket get last SQL dunp
> hosts: localhost
> gather_facts: no
> connection: local
> vars:
> bucket: myuniquebucketname
> tasks:
> - name: AWS get bucket list
> s3:
> bucket: "{{ bucket }}"
> mode: list
> register: mysqldump_list
> tags: aws, bucket
>
> - debug: var="{{ mysqldump_list }}"
Wrong syntax.
var= take name of the variable not the content.
- debug: var=mysqldump_list
--
Kai Stian Olstad