Skip to content

Commit 34c4a67

Browse files
authored
Adds additional supported_services in network offering (#123)
1 parent f46ce62 commit 34c4a67

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

plugins/modules/cs_network_offering.py

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
- A list of one or more items from the choice list.
4646
type: list
4747
elements: str
48-
choices: [ Dns, PortForwarding, Dhcp, SourceNat, UserData, Firewall, StaticNat, Vpn, Lb ]
48+
choices: [ Dns, PortForwarding, Dhcp, SourceNat, UserData, Firewall, StaticNat, Vpn, Lb, NetworkACL, SecurityGroup, Connectivity, BaremetalPxeService ]
4949
aliases: [ supported_service ]
5050
traffic_type:
5151
description:
@@ -155,7 +155,20 @@
155155
display_text: network offering description
156156
state: enabled
157157
guest_ip_type: Isolated
158-
supported_services: [ Dns, PortForwarding, Dhcp, SourceNat, UserData, Firewall, StaticNat, Vpn, Lb ]
158+
supported_services:
159+
- Dns
160+
- PortForwarding
161+
- Dhcp
162+
- SourceNat
163+
- UserData
164+
- Firewall
165+
- StaticNat
166+
- Vpn
167+
- Lb
168+
- NetworkACL
169+
- SecurityGroup
170+
- Connectivity
171+
- BaremetalPxeService
159172
service_providers:
160173
- { service: 'dns', provider: 'virtualrouter' }
161174
- { service: 'dhcp', provider: 'virtualrouter' }
@@ -445,6 +458,10 @@ def main():
445458
'StaticNat',
446459
'Vpn',
447460
'Lb',
461+
'NetworkACL',
462+
'SecurityGroup',
463+
'Connectivity',
464+
'BaremetalPxeService',
448465
]),
449466
traffic_type=dict(default='Guest'),
450467
availability=dict(),

0 commit comments

Comments
 (0)