Skip to content

Commit

Permalink
Fix adhoc role permission name in object diff. (#826)
Browse files Browse the repository at this point in the history
* Fix adhoc role permission name in object diff.

* Update controller_object_diff.py

---------

Co-authored-by: Leon Muresan,Bogdan,CH-Lausanne <bogdan.leonmuresan@nestle.com>
Co-authored-by: Tom Page <tompage1994@hotmail.co.uk>
  • Loading branch information
3 people authored May 13, 2024
1 parent 1b3552d commit b01869a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelogs/fragments/adhoc_role_name_object_diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
bugfixes:
- Fix "adhoc" role permission name in object diff.
...
2 changes: 1 addition & 1 deletion plugins/lookup/controller_object_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def run(self, terms, variables=None, **kwargs):
item.update({"organizations": [item[item["resource_type"]]]})
if item["resource_type"] == "instance_group":
item.update({"instance_groups": [item[item["resource_type"]]]})
item.update({"role": item["name"].lower().replace(" ", "_")})
item.update({"role": item["name"].lower().replace(" ", "_").replace("ad_hoc", "adhoc")})
# Remove the extra fields
item.pop("users")
item.pop("teams")
Expand Down

0 comments on commit b01869a

Please sign in to comment.