mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -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
|
@ -13,10 +13,12 @@ description:
|
|||
- Set up, reconfigure, or remove SSL termination for an existing load balancer.
|
||||
options:
|
||||
loadbalancer:
|
||||
type: str
|
||||
description:
|
||||
- Name or ID of the load balancer on which to manage SSL termination.
|
||||
required: true
|
||||
state:
|
||||
type: str
|
||||
description:
|
||||
- If set to "present", SSL termination will be added to this load balancer.
|
||||
- If "absent", SSL termination will be removed instead.
|
||||
|
@ -31,16 +33,20 @@ options:
|
|||
default: true
|
||||
type: bool
|
||||
private_key:
|
||||
type: str
|
||||
description:
|
||||
- The private SSL key as a string in PEM format.
|
||||
certificate:
|
||||
type: str
|
||||
description:
|
||||
- The public SSL certificates as a string in PEM format.
|
||||
intermediate_certificate:
|
||||
type: str
|
||||
description:
|
||||
- One or more intermediate certificate authorities as a string in PEM
|
||||
- format, concatenated into a single string.
|
||||
secure_port:
|
||||
type: int
|
||||
description:
|
||||
- The port to listen for secure traffic.
|
||||
default: 443
|
||||
|
@ -61,6 +67,7 @@ options:
|
|||
default: false
|
||||
type: bool
|
||||
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