Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gitlab_group: fix issue 4577 #4856

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions plugins/modules/source_control/gitlab/gitlab_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
description:
- Determine if developers can create projects in the group.
choices: ["developer", "maintainer", "noone"]
default: "maintainer"
fzarifian marked this conversation as resolved.
Show resolved Hide resolved
type: str
version_added: 3.7.0
auto_devops_enabled:
Expand All @@ -73,6 +74,7 @@
description:
- Allowed to create subgroups.
choices: ["maintainer", "owner"]
default: "maintainer"
type: str
version_added: 3.7.0
require_two_factor_authentication:
Expand Down Expand Up @@ -314,9 +316,9 @@ def main():
state=dict(type='str', default="present", choices=["absent", "present"]),
parent=dict(type='str'),
visibility=dict(type='str', default="private", choices=["internal", "private", "public"]),
project_creation_level=dict(type='str', choices=['developer', 'maintainer', 'noone']),
project_creation_level=dict(type='str', default='maintainer', choices=['developer', 'maintainer', 'noone']),
auto_devops_enabled=dict(type='bool'),
subgroup_creation_level=dict(type='str', choices=['maintainer', 'owner']),
subgroup_creation_level=dict(type='str', default='maintainer', choices=['maintainer', 'owner']),
require_two_factor_authentication=dict(type='bool'),
avatar_path=dict(type='path'),
))
Expand Down