mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[stable-6] Add attributes to oneandone, ovh, and rackspace modules (#6064)
Add attributes to oneandone, ovh, and rackspace modules (#5948)
Add attributes to oneandone, ovh, and rackspace modules.
(cherry picked from commit 6bd131f2fb
)
This commit is contained in:
parent
41af1c3693
commit
5589bcb659
34 changed files with 264 additions and 51 deletions
|
@ -13,7 +13,14 @@ module: oneandone_firewall_policy
|
|||
short_description: Configure 1&1 firewall policy
|
||||
description:
|
||||
- Create, remove, reconfigure, update firewall policies.
|
||||
This module has a dependency on 1and1 >= 1.0
|
||||
This module has a dependency on 1and1 >= 1.0.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -13,7 +13,14 @@ module: oneandone_load_balancer
|
|||
short_description: Configure 1&1 load balancer
|
||||
description:
|
||||
- Create, remove, update load balancers.
|
||||
This module has a dependency on 1and1 >= 1.0
|
||||
This module has a dependency on 1and1 >= 1.0.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -14,7 +14,14 @@ short_description: Configure 1&1 monitoring policy
|
|||
description:
|
||||
- Create, remove, update monitoring policies
|
||||
(and add/remove ports, processes, and servers).
|
||||
This module has a dependency on 1and1 >= 1.0
|
||||
This module has a dependency on 1and1 >= 1.0.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -13,7 +13,14 @@ module: oneandone_private_network
|
|||
short_description: Configure 1&1 private networking
|
||||
description:
|
||||
- Create, remove, reconfigure, update a private network.
|
||||
This module has a dependency on 1and1 >= 1.0
|
||||
This module has a dependency on 1and1 >= 1.0.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -13,7 +13,14 @@ module: oneandone_public_ip
|
|||
short_description: Configure 1&1 public IPs
|
||||
description:
|
||||
- Create, update, and remove public IPs.
|
||||
This module has a dependency on 1and1 >= 1.0
|
||||
This module has a dependency on 1and1 >= 1.0.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -14,6 +14,13 @@ short_description: Create, destroy, start, stop, and reboot a 1&1 Host server
|
|||
description:
|
||||
- Create, destroy, update, start, stop, and reboot a 1&1 Host server.
|
||||
When the server is created it can optionally wait for it to be 'running' before returning.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -23,6 +23,13 @@ notes:
|
|||
key as described into U(https://docs.ovh.com/gb/en/customer/first-steps-with-ovh-api/)
|
||||
requirements:
|
||||
- ovh >= 0.4.8
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
required: true
|
||||
|
|
|
@ -22,6 +22,13 @@ notes:
|
|||
key as described into U(https://docs.ovh.com/gb/en/customer/first-steps-with-ovh-api/)
|
||||
requirements:
|
||||
- ovh > 0.3.5
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
required: true
|
||||
|
|
|
@ -18,6 +18,13 @@ short_description: Manage OVH monthly billing
|
|||
description:
|
||||
- Enable monthly billing on OVH cloud intances (be aware OVH does not allow to disable it).
|
||||
requirements: [ "ovh" ]
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
project_id:
|
||||
required: true
|
||||
|
|
|
@ -15,6 +15,11 @@ short_description: Create / delete an instance in Rackspace Public Cloud
|
|||
description:
|
||||
- creates / deletes a Rackspace Public Cloud instance and optionally
|
||||
waits for it to be 'running'.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
auto_increment:
|
||||
description:
|
||||
|
@ -178,6 +183,7 @@ notes:
|
|||
set to C(delete), and the oldest servers in the group will be deleted.
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Manipulate Rackspace Cloud Block Storage Volumes
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
description:
|
||||
type: str
|
||||
|
@ -76,6 +81,7 @@ author:
|
|||
- "Matt Martz (@sivel)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Manipulate Rackspace Cloud Block Storage Volume Attachments
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
device:
|
||||
type: str
|
||||
|
@ -55,6 +60,7 @@ author:
|
|||
- "Matt Martz (@sivel)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -18,6 +18,11 @@ description:
|
|||
unique since it's used to identify the instance.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
type: str
|
||||
|
@ -67,6 +72,7 @@ author: "Simon JAILLET (@jails)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -15,6 +15,11 @@ description:
|
|||
- create / delete a database in the Cloud Databases.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
cdb_id:
|
||||
type: str
|
||||
|
@ -46,6 +51,7 @@ author: "Simon JAILLET (@jails)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- create / delete a database in the Cloud Databases.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
cdb_id:
|
||||
type: str
|
||||
|
@ -55,6 +60,7 @@ author: "Simon JAILLET (@jails)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- creates / deletes a Rackspace Public Cloud load balancer.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
algorithm:
|
||||
type: str
|
||||
|
@ -109,6 +114,7 @@ author:
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Adds, modifies and removes nodes from a Rackspace Cloud Load Balancer.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
address:
|
||||
type: str
|
||||
|
@ -89,6 +94,7 @@ author: "Lukasz Kawczynski (@neuroid)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -15,6 +15,11 @@ description:
|
|||
- Set up, reconfigure, or remove SSL termination for an existing load balancer.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
loadbalancer:
|
||||
type: str
|
||||
|
@ -79,6 +84,7 @@ author: Ash Wilson (@smashwilson)
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Manage domains on Rackspace Cloud DNS.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
comment:
|
||||
type: str
|
||||
|
@ -50,6 +55,7 @@ author: "Matt Martz (@sivel)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Manage DNS records on Rackspace Cloud DNS.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
comment:
|
||||
type: str
|
||||
|
@ -96,6 +101,7 @@ author: "Matt Martz (@sivel)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Manipulate Rackspace Cloud Files Containers.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
clear_meta:
|
||||
description:
|
||||
|
@ -79,6 +84,7 @@ author: "Paul Durivage (@angstwad)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Upload, download, and delete objects in Rackspace Cloud Files.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
clear_meta:
|
||||
description:
|
||||
|
@ -80,6 +85,7 @@ author: "Paul Durivage (@angstwad)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Verifies Rackspace Cloud credentials and returns identity information.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -29,6 +34,7 @@ author:
|
|||
- "Matt Martz (@sivel)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Create a keypair for use with Rackspace Cloud Servers.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
type: str
|
||||
|
@ -41,6 +46,7 @@ notes:
|
|||
- The ability to specify a file path for the public key was added in 1.7
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ description:
|
|||
- Manipulate metadata for Rackspace Cloud Servers.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
address:
|
||||
type: str
|
||||
|
@ -38,6 +43,7 @@ options:
|
|||
author: "Matt Martz (@sivel)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -21,6 +21,11 @@ description:
|
|||
*rax_mon_alarm*.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -74,6 +79,7 @@ options:
|
|||
author: Ash Wilson (@smashwilson)
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -22,6 +22,11 @@ description:
|
|||
rax_mon_alarm
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -118,6 +123,7 @@ options:
|
|||
author: Ash Wilson (@smashwilson)
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -20,6 +20,11 @@ description:
|
|||
rax_mon_notification -> rax_mon_notification_plan -> rax_mon_alarm.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
label:
|
||||
type: str
|
||||
|
@ -56,6 +61,7 @@ options:
|
|||
author: Ash Wilson (@smashwilson)
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -17,6 +17,11 @@ description:
|
|||
channel that can be used to communicate alarms, such as email, webhooks, or
|
||||
PagerDuty. Rackspace monitoring module flow | rax_mon_entity -> rax_mon_check ->
|
||||
*rax_mon_notification* -> rax_mon_notification_plan -> rax_mon_alarm
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -47,6 +52,7 @@ options:
|
|||
author: Ash Wilson (@smashwilson)
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -20,6 +20,11 @@ description:
|
|||
rax_mon_notification -> *rax_mon_notification_plan* -> rax_mon_alarm.
|
||||
- This module relies on the C(pyrax) package which is deprecated in favour of using Openstack API.
|
||||
- Unless maintainers step up to work on the module, it will be marked as deprecated in community.general 7.0.0 and removed in version 9.0.0.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -55,6 +60,7 @@ options:
|
|||
author: Ash Wilson (@smashwilson)
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -14,6 +14,11 @@ module: rax_network
|
|||
short_description: Create / delete an isolated network in Rackspace Public Cloud
|
||||
description:
|
||||
- creates / deletes a Rackspace Public Cloud isolated network.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -37,6 +42,7 @@ author:
|
|||
- "Jesse Keating (@omgjlk)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -14,6 +14,11 @@ module: rax_queue
|
|||
short_description: Create / delete a queue in Rackspace Public Cloud
|
||||
description:
|
||||
- creates / deletes a Rackspace Public Cloud queue.
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
type: str
|
||||
|
@ -33,6 +38,7 @@ author:
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -14,6 +14,11 @@ module: rax_scaling_group
|
|||
short_description: Manipulate Rackspace Cloud Autoscale Groups
|
||||
description:
|
||||
- Manipulate Rackspace Cloud Autoscale Groups
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
config_drive:
|
||||
description:
|
||||
|
@ -124,6 +129,7 @@ author: "Matt Martz (@sivel)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
|
@ -14,6 +14,11 @@ module: rax_scaling_policy
|
|||
short_description: Manipulate Rackspace Cloud Autoscale Scaling Policy
|
||||
description:
|
||||
- Manipulate Rackspace Cloud Autoscale Scaling Policy
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
at:
|
||||
type: str
|
||||
|
@ -79,6 +84,7 @@ author: "Matt Martz (@sivel)"
|
|||
extends_documentation_fragment:
|
||||
- community.general.rackspace
|
||||
- community.general.rackspace.openstack
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
|
||||
|
|
Loading…
Reference in a new issue