Adjust booleans in cloud modules. (#5155) (#5176)

(cherry picked from commit 3a08903e1c)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2022-08-24 20:22:10 +02:00 committed by GitHub
parent eb1f0c28a9
commit 43dc6ba533
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
51 changed files with 177 additions and 177 deletions

View file

@ -20,7 +20,7 @@ options:
- Optionally clear existing metadata when applying metadata to existing containers.
Selecting this option is only appropriate when setting type=meta
type: bool
default: "no"
default: false
container:
type: str
description:
@ -82,7 +82,7 @@ extends_documentation_fragment:
EXAMPLES = '''
- name: "Test Cloud Files Containers"
hosts: local
gather_facts: no
gather_facts: false
tasks:
- name: "List all containers"
community.general.rax_files:
@ -112,22 +112,22 @@ EXAMPLES = '''
- name: "Make container public"
community.general.rax_files:
container: mycontainer
public: yes
public: true
- name: "Make container public with a 24 hour TTL"
community.general.rax_files:
container: mycontainer
public: yes
public: true
ttl: 86400
- name: "Make container private"
community.general.rax_files:
container: mycontainer
private: yes
private: true
- name: "Test Cloud Files Containers Metadata Storage"
hosts: local
gather_facts: no
gather_facts: false
tasks:
- name: "Get mycontainer2 metadata"
community.general.rax_files: