From 52c0a1565d872c2fe37e1da76888c1e9c9ad9a83 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 08:13:49 +0200 Subject: [PATCH] [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 (cherry picked from commit 9abba2816ead6c4a1d5413de2c5227cee9dd1c62) Co-authored-by: Simon Deziel --- plugins/modules/gitlab_group_variable.py | 8 ++++---- plugins/modules/gitlab_instance_variable.py | 6 +++--- plugins/modules/gitlab_project_variable.py | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/plugins/modules/gitlab_group_variable.py b/plugins/modules/gitlab_group_variable.py index 23591c3d90..b06581d94b 100644 --- a/plugins/modules/gitlab_group_variable.py +++ b/plugins/modules/gitlab_group_variable.py @@ -88,24 +88,24 @@ options: type: str masked: description: - - Wether variable value is masked or not. + - Whether variable value is masked or not. type: bool default: false protected: description: - - Wether variable value is protected or not. + - Whether variable value is protected or not. type: bool default: false raw: description: - - Wether variable value is raw or not. + - Whether variable value is raw or not. - Support for raw values requires GitLab >= 15.7. type: bool default: false version_added: '7.4.0' variable_type: 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 choices: [ "env_var", "file" ] default: env_var diff --git a/plugins/modules/gitlab_instance_variable.py b/plugins/modules/gitlab_instance_variable.py index 0217a1484d..ee2022483e 100644 --- a/plugins/modules/gitlab_instance_variable.py +++ b/plugins/modules/gitlab_instance_variable.py @@ -67,17 +67,17 @@ options: type: str masked: description: - - Wether variable value is masked or not. + - Whether variable value is masked or not. type: bool default: false protected: description: - - Wether variable value is protected or not. + - Whether variable value is protected or not. type: bool default: false variable_type: 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 choices: [ "env_var", "file" ] default: env_var diff --git a/plugins/modules/gitlab_project_variable.py b/plugins/modules/gitlab_project_variable.py index a7fd90b347..b02b7133c3 100644 --- a/plugins/modules/gitlab_project_variable.py +++ b/plugins/modules/gitlab_project_variable.py @@ -87,26 +87,26 @@ options: type: str masked: description: - - Wether variable value is masked or not. + - Whether variable value is masked or not. - Support for masked values requires GitLab >= 11.10. type: bool default: false protected: description: - - Wether variable value is protected or not. + - Whether variable value is protected or not. - Support for protected values requires GitLab >= 9.3. type: bool default: false raw: description: - - Wether variable value is raw or not. + - Whether variable value is raw or not. - Support for raw values requires GitLab >= 15.7. type: bool default: false version_added: '7.4.0' variable_type: 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. type: str choices: ["env_var", "file"]