Skip to content

Commit

Permalink
adjust booleans (ansible-collections#1420)
Browse files Browse the repository at this point in the history
adjust booleans: use true/false

Depends-On: ansible-collections#1423
SUMMARY
ansible-community/community-topics#116
ISSUE TYPE

Docs Pull Request

Reviewed-by: Mark Chappell <None>
Reviewed-by: Alina Buzachis <None>

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@cb9716e
  • Loading branch information
markuman authored and goneri committed Sep 21, 2022
1 parent a1313a5 commit 5de3d51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/lambda_alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
---
# Simple example to create a lambda function and publish a version
- hosts: localhost
gather_facts: no
gather_facts: false
vars:
state: present
project_folder: /path/to/deployment/package
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/lambda_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
type: str
tail_log:
description:
- If I(tail_log=yes), the result of the task will include the last 4 KB
- If I(tail_log=true), the result of the task will include the last 4 KB
of the CloudWatch log for the function execution. Log tailing only
works if you use synchronous invocation I(wait=yes). This is usually
works if you use synchronous invocation I(wait=true). This is usually
used for development or testing Lambdas.
type: bool
default: false
wait:
description:
- Whether to wait for the function results or not. If I(wait=no)
the task will not return any results. To wait for the Lambda function
to complete, set I(wait=yes) and the result will be available in the
to complete, set I(wait=true) and the result will be available in the
I(output) key.
type: bool
default: true
Expand Down

0 comments on commit 5de3d51

Please sign in to comment.