Skip to content

Commit e770d30

Browse files
authored
Close #685: Add mark_connected to netbox_circuit_termination (#686)
* Add mark_connected to netbox_circuit_termination
1 parent 5b453cf commit e770d30

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

plugins/modules/netbox_circuit_termination.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77

88
__metaclass__ = type
99

10-
ANSIBLE_METADATA = {
11-
"metadata_version": "1.1",
12-
"status": ["preview"],
13-
"supported_by": "community",
14-
}
15-
1610
DOCUMENTATION = r"""
1711
---
1812
module: netbox_circuit_termination
@@ -49,6 +43,12 @@
4943
- Z
5044
required: true
5145
type: str
46+
mark_connected:
47+
description:
48+
- Treat as if cable is connected
49+
required: false
50+
type: bool
51+
version_added: 3.5.0
5252
site:
5353
description:
5454
- The site the circuit termination will be assigned to
@@ -162,6 +162,7 @@ def main():
162162
options=dict(
163163
circuit=dict(required=True, type="raw"),
164164
term_side=dict(required=True, choices=["A", "Z"]),
165+
mark_connected=dict(required=False, type="bool"),
165166
site=dict(required=False, type="raw"),
166167
provider_network=dict(required=False, type="raw"),
167168
port_speed=dict(required=False, type="int"),

0 commit comments

Comments
 (0)