Skip to content

Commit 187891f

Browse files
authored
added specific_security_zone_enable field to interface resource (#194)
* added specific_security_zone_enable field to interface resource
1 parent 4258913 commit 187891f

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ Check_Point.Mgmt Release Notes
44

55
.. contents:: Topics
66

7+
v6.8.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is release 6.8.0 of ``check_point.mgmt``, released on 2025-12-22.
14+
15+
Minor Changes
16+
-------------
17+
18+
- added new parameter 'specific_security_zone_enabled' to 'cp_mgmt_interface' module.
19+
720
v6.7.0
821
======
922

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: check_point
99
name: mgmt
1010

1111
# The version of the collection. Must be compatible with semantic versioning
12-
version: 6.7.0
12+
version: 6.8.0
1313

1414
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515
readme: README.md

plugins/modules/cp_mgmt_interface.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,11 @@
215215
description:
216216
- Security Zone specified manually.
217217
type: str
218+
specific_security_zone_enabled:
219+
description:
220+
- Indicates whether to enable specific security zone.
221+
type: bool
222+
version_added: "6.8.0"
218223
tags:
219224
description:
220225
- Collection of tag identifiers.
@@ -402,7 +407,8 @@ def main():
402407
'ethernet', 'loopback', '6 in 4 tunnel', 'pppoe', 'vpn tunnel', 'vlan']),
403408
security_zone_settings=dict(type='dict', options=dict(
404409
auto_calculated=dict(type='bool'),
405-
specific_zone=dict(type='str')
410+
specific_zone=dict(type='str'),
411+
specific_security_zone_enabled=dict(type='bool')
406412
)),
407413
tags=dict(type='list', elements='str'),
408414
topology=dict(type='str', choices=['automatic', 'external', 'internal']),

0 commit comments

Comments
 (0)