The type of wait_condition.status is str (#310)

The `wait_condition.status` key is a string.

- Use actually string in the documentation
- Use core's `boolean()` method to convert the value internally to
  boolean
This commit is contained in:
Gonéri Le Bouder
2020-11-25 14:01:38 -05:00
committed by GitHub
parent 4d94cb9439
commit 8f14bf6c46
3 changed files with 10 additions and 5 deletions

View File

@@ -52,9 +52,9 @@ options:
- The value of the status field in your desired condition.
- For example, if a C(Deployment) is paused, the C(Progressing) C(type) will have the C(Unknown) status.
choices:
- True
- False
- Unknown
- "True"
- "False"
- "Unknown"
default: "True"
reason:
type: str