Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
resmo committed Sep 25, 2024
1 parent b489648 commit 184554f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
- URL for the cluster
type: str
username:
description:cs_
description:
- Username for the cluster.
type: str
password:
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def get_result(self, resource):
if self.account:
self.result["account"] = self.account["name"]
# TODO: buggy?
self.result["domain"] = self.domain["path"]
self.result["domain"] = self.domain["path"] if self.domain else None
elif self.zone:
self.result["zone"] = self.zone["name"]
return self.result
Expand Down

0 comments on commit 184554f

Please sign in to comment.