mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-30 04:49:09 -07:00
Tidy up validate-modules ignores for rackspace modules (#1242)
* fixed validation-modules for plugins/doc_fragments/rackspace.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_cbs.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_cbs_attachments.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_cdb_database.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_cdb.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_cdb_user.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_clb_nodes.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_clb.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_clb_ssl.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_dns.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_dns_record.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_facts.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_files.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_files_objects.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_identity.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_keypair.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_meta.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_mon_alarm.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_mon_check.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_mon_entity.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_mon_notification_plan.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_mon_notification.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_network.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_queue.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_scaling_group.py * fixed validation-modules for plugins/modules/cloud/rackspace/rax_scaling_policy.py * Enabling validation-modules for rackspace modules * Removed test in rax.py * Added markup to items in list * rax_monm_check.py: moved choices doc to description for check_type As the argument_spec does not contain the "choices" spec, adjusting that in the docs * rax_monm_check.py: a number of things missing in docs, fixed
This commit is contained in:
parent
6441814f8b
commit
af4474efd7
30 changed files with 243 additions and 312 deletions
|
@ -14,6 +14,7 @@ description:
|
|||
- creates / deletes a Rackspace Public Cloud load balancer.
|
||||
options:
|
||||
algorithm:
|
||||
type: str
|
||||
description:
|
||||
- algorithm for the balancer being created
|
||||
choices:
|
||||
|
@ -24,16 +25,21 @@ options:
|
|||
- WEIGHTED_ROUND_ROBIN
|
||||
default: LEAST_CONNECTIONS
|
||||
meta:
|
||||
type: dict
|
||||
description:
|
||||
- A hash of metadata to associate with the instance
|
||||
name:
|
||||
type: str
|
||||
description:
|
||||
- Name to give the load balancer
|
||||
required: yes
|
||||
port:
|
||||
type: int
|
||||
description:
|
||||
- Port for the balancer being created
|
||||
default: 80
|
||||
protocol:
|
||||
type: str
|
||||
description:
|
||||
- Protocol for the balancer being created
|
||||
choices:
|
||||
|
@ -57,6 +63,7 @@ options:
|
|||
- SFTP
|
||||
default: HTTP
|
||||
state:
|
||||
type: str
|
||||
description:
|
||||
- Indicate desired state of the resource
|
||||
choices:
|
||||
|
@ -64,10 +71,12 @@ options:
|
|||
- absent
|
||||
default: present
|
||||
timeout:
|
||||
type: int
|
||||
description:
|
||||
- timeout for communication between the balancer and the node
|
||||
default: 30
|
||||
type:
|
||||
type: str
|
||||
description:
|
||||
- type of interface for the balancer being created
|
||||
choices:
|
||||
|
@ -75,6 +84,7 @@ options:
|
|||
- SERVICENET
|
||||
default: PUBLIC
|
||||
vip_id:
|
||||
type: str
|
||||
description:
|
||||
- Virtual IP ID to use when creating the load balancer for purposes of
|
||||
sharing an IP with another load balancer of another protocol
|
||||
|
@ -84,6 +94,7 @@ options:
|
|||
type: bool
|
||||
default: 'no'
|
||||
wait_timeout:
|
||||
type: int
|
||||
description:
|
||||
- how long before wait gives up, in seconds
|
||||
default: 300
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue