mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #7410/9abba281 backport][stable-7] plugins/modules/gitlab: typo fix: s/Wether/Whether/ (#7413)
plugins/modules/gitlab: typo fix: s/Wether/Whether/ (#7410)
Signed-off-by: Simon Deziel <simon.deziel@canonical.com>
(cherry picked from commit 9abba2816e
)
Co-authored-by: Simon Deziel <simon.deziel@canonical.com>
This commit is contained in:
parent
df89012081
commit
52c0a1565d
3 changed files with 11 additions and 11 deletions
|
@ -88,24 +88,24 @@ options:
|
||||||
type: str
|
type: str
|
||||||
masked:
|
masked:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is masked or not.
|
- Whether variable value is masked or not.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
protected:
|
protected:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is protected or not.
|
- Whether variable value is protected or not.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
raw:
|
raw:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is raw or not.
|
- Whether variable value is raw or not.
|
||||||
- Support for raw values requires GitLab >= 15.7.
|
- Support for raw values requires GitLab >= 15.7.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
version_added: '7.4.0'
|
version_added: '7.4.0'
|
||||||
variable_type:
|
variable_type:
|
||||||
description:
|
description:
|
||||||
- Wether a variable is an environment variable (V(env_var)) or a file (V(file)).
|
- Whether a variable is an environment variable (V(env_var)) or a file (V(file)).
|
||||||
type: str
|
type: str
|
||||||
choices: [ "env_var", "file" ]
|
choices: [ "env_var", "file" ]
|
||||||
default: env_var
|
default: env_var
|
||||||
|
|
|
@ -67,17 +67,17 @@ options:
|
||||||
type: str
|
type: str
|
||||||
masked:
|
masked:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is masked or not.
|
- Whether variable value is masked or not.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
protected:
|
protected:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is protected or not.
|
- Whether variable value is protected or not.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
variable_type:
|
variable_type:
|
||||||
description:
|
description:
|
||||||
- Wether a variable is an environment variable (V(env_var)) or a file (V(file)).
|
- Whether a variable is an environment variable (V(env_var)) or a file (V(file)).
|
||||||
type: str
|
type: str
|
||||||
choices: [ "env_var", "file" ]
|
choices: [ "env_var", "file" ]
|
||||||
default: env_var
|
default: env_var
|
||||||
|
|
|
@ -87,26 +87,26 @@ options:
|
||||||
type: str
|
type: str
|
||||||
masked:
|
masked:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is masked or not.
|
- Whether variable value is masked or not.
|
||||||
- Support for masked values requires GitLab >= 11.10.
|
- Support for masked values requires GitLab >= 11.10.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
protected:
|
protected:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is protected or not.
|
- Whether variable value is protected or not.
|
||||||
- Support for protected values requires GitLab >= 9.3.
|
- Support for protected values requires GitLab >= 9.3.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
raw:
|
raw:
|
||||||
description:
|
description:
|
||||||
- Wether variable value is raw or not.
|
- Whether variable value is raw or not.
|
||||||
- Support for raw values requires GitLab >= 15.7.
|
- Support for raw values requires GitLab >= 15.7.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
version_added: '7.4.0'
|
version_added: '7.4.0'
|
||||||
variable_type:
|
variable_type:
|
||||||
description:
|
description:
|
||||||
- Wether a variable is an environment variable (V(env_var)) or a file (V(file)).
|
- Whether a variable is an environment variable (V(env_var)) or a file (V(file)).
|
||||||
- Support for O(variables[].variable_type) requires GitLab >= 11.11.
|
- Support for O(variables[].variable_type) requires GitLab >= 11.11.
|
||||||
type: str
|
type: str
|
||||||
choices: ["env_var", "file"]
|
choices: ["env_var", "file"]
|
||||||
|
|
Loading…
Reference in a new issue