mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user