Skip to content

Commit 790546a

Browse files
committed
fixed doc-choices-do-not-match-spec CI failure
1 parent 20b5dc8 commit 790546a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

plugins/modules/netbox_circuit_termination.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,17 @@ def main():
194194
term_side=dict(required=True, choices=["A", "Z"]),
195195
mark_connected=dict(required=False, type="bool"),
196196
termination_id=dict(required=False, type="int"),
197-
termination_type=dict(required=False, type="str"),
197+
termination_type=dict(
198+
required=False,
199+
type="str",
200+
choices=[
201+
"dcim.site",
202+
"dcim.location",
203+
"dcim.region",
204+
"dcim.sitegroup",
205+
"circuits.providernetwork",
206+
],
207+
),
198208
site=dict(required=False, type="raw"),
199209
provider_network=dict(required=False, type="raw"),
200210
port_speed=dict(required=False, type="int"),

0 commit comments

Comments
 (0)