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"]