mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 14:21:26 -07:00
cloudstack: fix E326 (#54657)
* cloudstack: remove choice list for hypervisor param * cloudstack: streamline network_type with returned value by the API * cloudstack: remove E326 * add changelog fragment
This commit is contained in:
parent
833512b07c
commit
01f63ee871
16 changed files with 35 additions and 69 deletions
|
@ -46,8 +46,8 @@ options:
|
|||
description:
|
||||
- Network type of the zone.
|
||||
type: str
|
||||
default: basic
|
||||
choices: [ basic, advanced ]
|
||||
default: Basic
|
||||
choices: [ Basic, Advanced ]
|
||||
dns1:
|
||||
description:
|
||||
- First DNS for the zone.
|
||||
|
@ -348,7 +348,7 @@ def main():
|
|||
internal_dns2=dict(),
|
||||
dns1_ipv6=dict(),
|
||||
dns2_ipv6=dict(),
|
||||
network_type=dict(default='basic', choices=['Basic', 'basic', 'Advanced', 'advanced']),
|
||||
network_type=dict(default='Basic', choices=['Basic', 'Advanced']),
|
||||
network_domain=dict(),
|
||||
guest_cidr_address=dict(),
|
||||
dhcp_provider=dict(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue