Skip to content

Commit 11d1a40

Browse files
authored
Add tenant to netbox_aggregate (#968)
1 parent 7224900 commit 11d1a40

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

plugins/modules/netbox_aggregate.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555
required: false
5656
type: str
5757
version_added: "3.10.0"
58+
tenant:
59+
description:
60+
- Tenant the aggregate will be assigned to.
61+
required: false
62+
type: raw
63+
version_added: "3.12.0"
5864
tags:
5965
description:
6066
- "Any tags that the aggregate may need to be associated with"
@@ -145,6 +151,7 @@ def main():
145151
date_added=dict(required=False, type="str"),
146152
description=dict(required=False, type="str"),
147153
comments=dict(required=False, type="str"),
154+
tenant=dict(required=False, type="raw"),
148155
tags=dict(required=False, type="list", elements="raw"),
149156
custom_fields=dict(required=False, type="dict"),
150157
),

0 commit comments

Comments
 (0)