Adjust booleans in cloud modules. (#5155)

This commit is contained in:
Felix Fontein 2022-08-24 20:16:25 +02:00 committed by GitHub
parent 19ce50f6b9
commit 3a08903e1c
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: