Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated result.json['message'] to result.json()['message'] #223

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/modules/cloud_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def present_cloud_stack(module):
return False, True, result.json()
elif result.status_code in [409, 403] and result.json()['message'] in ["That url is not available", "Hosted instance limit reached"]:
stack_found = False
if result.json['message'] == "That url is not available":
if result.json()['message'] == "That url is not available":
api_url = 'https://grafana.com/api/orgs/' + module.params['org_slug'] + '/instances'
result = requests.get(api_url, headers={"Authorization": 'Bearer ' + module.params['cloud_api_key']})
stackInfo = {}
Expand All @@ -164,7 +164,7 @@ def present_cloud_stack(module):
return False, False, stackInfo
else:
return True, False, "Stack is not found under your org"
elif result.json['message'] == "Hosted instance limit reached":
elif result.json()['message'] == "Hosted instance limit reached":
return True, False, "You have reached Maximum number of Cloud Stacks in your Org."
else:
return True, False, {"status": result.status_code, 'response': result.json()['message']}
Expand Down
Loading