2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# rubocop:disable Rails/Output
|
|
|
|
module Gitlab
|
2021-10-27 15:23:28 +05:30
|
|
|
class EncryptedLdapCommand < EncryptedCommandBase
|
|
|
|
DISPLAY_NAME = "LDAP"
|
|
|
|
EDIT_COMMAND_NAME = "gitlab:ldap:secret:edit"
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
class << self
|
|
|
|
def encrypted_secrets
|
|
|
|
Gitlab::Auth::Ldap::Config.encrypted_secrets
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def encrypted_file_template
|
|
|
|
<<~YAML
|
|
|
|
# main:
|
|
|
|
# password: '123'
|
|
|
|
# user_dn: 'gitlab-adm'
|
|
|
|
YAML
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# rubocop:enable Rails/Output
|