Skip to content

Commit

Permalink
aws modules: fix examples to use FQCN for builtin modules/plugins (an…
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored and goneri committed Sep 21, 2022
1 parent 2f59a9e commit 1325586
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/lambda_alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
name: myLambdaFunction
register: lambda_info
- name: show results
debug:
ansible.builtin.debug:
msg: "{{ lambda_info['lambda_facts'] }}"
# The following will set the Dev alias to the latest version ($LATEST) since version is omitted (or = 0)
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/lambda_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
register: event
- name: Show source event
debug:
ansible.builtin.debug:
var: event.lambda_stream_events
'''

Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/lambda_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
query: all
max_items: 20
- name: show Lambda facts
debug:
ansible.builtin.debug:
var: lambda_facts
'''

Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/lambda_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
max_items: 20
register: output
- name: show Lambda information
debug:
ansible.builtin.debug:
msg: "{{ output['function'] }}"
'''

Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/lambda_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
register: lambda_policy_action
- name: show results
debug:
ansible.builtin.debug:
var: lambda_policy_action
'''

Expand Down

0 comments on commit 1325586

Please sign in to comment.