You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"gitlab_project_level_mr_approvals" {
source="./modules/gitlab/r/gitlab_project_level_mr_approvals"# disable_overriding_approvers_per_merge_request - (optional) is a type of booldisable_overriding_approvers_per_merge_request=null# merge_requests_author_approval - (optional) is a type of boolmerge_requests_author_approval=null# merge_requests_disable_committers_approval - (optional) is a type of boolmerge_requests_disable_committers_approval=null# project_id - (required) is a type of numberproject_id=null# reset_approvals_on_push - (optional) is a type of boolreset_approvals_on_push=null
}
resource"gitlab_project_level_mr_approvals""this" {
# disable_overriding_approvers_per_merge_request - (optional) is a type of booldisable_overriding_approvers_per_merge_request=var.disable_overriding_approvers_per_merge_request# merge_requests_author_approval - (optional) is a type of boolmerge_requests_author_approval=var.merge_requests_author_approval# merge_requests_disable_committers_approval - (optional) is a type of boolmerge_requests_disable_committers_approval=var.merge_requests_disable_committers_approval# project_id - (required) is a type of numberproject_id=var.project_id# reset_approvals_on_push - (optional) is a type of boolreset_approvals_on_push=var.reset_approvals_on_push
}