Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
ybhalchim committed Dec 11, 2024
1 parent fc7287e commit cc1a149
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/ipam_address_block_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ def __init__(self, *args, **kwargs):

def find_by_id(self):
try:
resp = AddressBlockApi(self.client).read(self.params["id"])
resp = AddressBlockApi(self.client).read(self.params["id"], inherit="full")
return [resp.result]
except NotFoundException as e:
return None
Expand Down
11 changes: 0 additions & 11 deletions plugins/modules/ipam_address_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,6 @@
- Filter query to filter objects
type: str
required: false
inherit:
description:
- Return inheritance information
type: str
required: false
choices:
- full
- partial
- none
default: full
tag_filters:
description:
- Filter dict to filter objects by tags
Expand Down Expand Up @@ -414,7 +404,6 @@ def main():
id=dict(type="str", required=False),
filters=dict(type="dict", required=False),
filter_query=dict(type="str", required=False),
inherit=dict(type="str", required=False, choices=["full", "partial", "none"], default="full"),
tag_filters=dict(type="dict", required=False),
tag_filter_query=dict(type="str", required=False),
)
Expand Down

0 comments on commit cc1a149

Please sign in to comment.