summaryrefslogtreecommitdiff
path: root/app/services/security/ci_configuration/sast_iac_create_service.rb
blob: 80e9cf963daea7b19a8583e0bf09cbec8bc85d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Security
  module CiConfiguration
    class SastIacCreateService < ::Security::CiConfiguration::BaseCreateService
      private

      def action
        Security::CiConfiguration::SastIacBuildAction.new(project.auto_devops_enabled?, existing_gitlab_ci_content).generate
      end

      def next_branch
        'set-sast-iac-config'
      end

      def message
        _('Configure SAST IaC in `.gitlab-ci.yml`, creating this file if it does not already exist')
      end

      def description
        _('Configure SAST IaC in `.gitlab-ci.yml` using the GitLab managed template. You can [add variable overrides](https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings) to customize SAST IaC settings.')
      end
    end
  end
end