Changes references to ansible_facts (FB_S3USER) (#61356)
This commit is contained in:
parent
a09d1e038d
commit
05afc28d08
2 changed files with 7 additions and 4 deletions
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- purefb_s3user - change resulting fact dict from I(ansible_facts) to I(s3user_info) (https://github.com/ansible/ansible/pull/61356)
|
|
@ -52,9 +52,10 @@ EXAMPLES = r'''
|
|||
account: bar
|
||||
fb_url: 10.10.10.2
|
||||
api_token: e31060a7-21fc-e277-6240-25983c6c4592
|
||||
register: result
|
||||
|
||||
debug:
|
||||
var: ansible_facts.fb_s3user
|
||||
- debug:
|
||||
msg: "S3 User: {{ result['s3user_info'] }}"
|
||||
|
||||
- name: Delete object store user foo in account bar
|
||||
purefb_s3user:
|
||||
|
@ -120,7 +121,7 @@ def update_s3user(module, blade):
|
|||
delete_s3user(module, blade)
|
||||
module.fail_json(msg='Object Store User {0}: Creation failed'.format(user))
|
||||
changed = True
|
||||
module.exit_json(changed=changed, ansible_facts=s3user_facts)
|
||||
module.exit_json(changed=changed, s3user_info=s3user_facts)
|
||||
|
||||
|
||||
def create_s3user(module, blade):
|
||||
|
@ -143,7 +144,7 @@ def create_s3user(module, blade):
|
|||
changed = True
|
||||
except Exception:
|
||||
module.fail_json(msg='Object Store User {0}: Creation failed'.format(user))
|
||||
module.exit_json(changed=changed, ansible_facts=s3user_facts)
|
||||
module.exit_json(changed=changed, s3user_info=s3user_facts)
|
||||
|
||||
|
||||
def delete_s3user(module, blade):
|
||||
|
|
Loading…
Reference in a new issue