We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hiera
gitlab::gitlab_rails: ldap_servers: main: label: 'LDAP' host: 'adserver-01' port: 389 uid: 'gitlabuser' method: 'plain' # "tls" or "ssl" or "plain" bind_dn: 'DC=uk' password: '$password' active_directory: true allow_username_or_email_login: true block_auto_created_users: false base: 'DC=uk'
Hiera isn't parsing correctly and returning as a json block instead
############################ # gitlab.yml configuration # ############################ gitlab_rails['ldap_servers'] = {"main"=>{"active_directory"=>true, "allow_username_or_email_login"=>true, "base"=>"DC=uk", "bind_dn"=>"DC=uk", "block_auto_created_users"=>false, "host"=>"adserver-01", "label"=>"LDAP", "method"=>"plain", "password"=>"$password", "port"=>389, "uid"=>"gitlabuser"}}
############################ # gitlab.yml configuration # ############################ gitlab_rails['ldap_enabled'] = true gitlab_rails['ldap_servers'] = YAML.load <<-'EOS' main: active_directory: true allow_username_or_email_login: true base: "DC=uk" bind_dn: "DC=uk" block_auto_created_users: false host: "adserver-01" label: "LDAP" method: "plain" password: "$password" port: 389 uid: "gitlabuser" EOS
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
Hiera
What are you seeing
Hiera isn't parsing correctly and returning as a json block instead
What behaviour did you expect instead
Output log
Any additional information you'd like to impart
The text was updated successfully, but these errors were encountered: