Skip to content

Commit

Permalink
fix idempotence issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexBacho committed Aug 4, 2023
1 parent 64654b3 commit eaec37d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/metal_project_ssh_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
project_id=SpecField(
type=FieldType.string,
description=["The ID of parent project."],
editable=False,
editable=True,
),
)

Expand Down Expand Up @@ -180,7 +180,7 @@ def main():
fetched = module.get_by_id(METAL_SSH_KEY, tolerate_not_found)
else:
fetched = module.get_one_from_list(
METAL_SSH_KEY,
MODULE_NAME,
["key"],
)

Expand Down

0 comments on commit eaec37d

Please sign in to comment.