security_vars.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # Copyright 2022 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. ---
  15. # This variable is used to accept the domain name the user intends to configure
  16. # Eg: ipa.test
  17. domain_name: "omnia.test"
  18. # A Kerberos realm is the domain over which a Kerberos authentication server has
  19. # the authority to authenticate a user, host or service.
  20. # A realm name is often, but not always the upper case version of the name of the
  21. # DNS domain over which it presides
  22. realm_name: "OMNIA.TEST"
  23. # Maximum number of consecutive failures before lockout
  24. # The default value of this variable can't be changed
  25. # Default value: 3
  26. max_failures: 3
  27. # Period (in seconds) after which the number of failed login attempts is reset
  28. # Default value: 60
  29. # Min: 30
  30. # Max: 60
  31. failure_reset_interval: 60
  32. # Period (in seconds) for which users are locked out
  33. # Default value: 10
  34. # Min: 5
  35. # Max: 10
  36. lockout_duration: 10
  37. # User sessions that have been idle for a specific period can be ended automatically
  38. # This variable sets session timeout to 3 minutes (180 seconds) by default
  39. # Min: 90
  40. # Max: 180
  41. session_timeout: 180
  42. # Email address used for sending alerts in case of authentication failure
  43. # If this variable is left blank, authentication failure alerts will be disabled.
  44. # Currently, only one email ID is accepted in this field
  45. alert_email_address: ""
  46. # This variable mentions the users to whom the access will be provided
  47. # format of user shall be username@ip or username
  48. # Ex1- root@1.2.3.4 Ex2- root Ex3- root@1.2.3.4 root (if multiple user, provide space seperated values) by default empty
  49. user: ''
  50. # This variable provides the type of access
  51. # Accepted values: "Allow" or "Deny"
  52. # Default value: "Allow"
  53. allow_deny: "Allow"
  54. # This variable is used to disable services.
  55. # Accepted values: "true" or "false".
  56. # Default value: false
  57. # Root access is needed.
  58. restrict_program_support: false
  59. # The below mentioned services can be disabled, by adding values in comma separated values format for restrict_softwares variable
  60. # Services: telnet,lpd,bluetooth,rlogin,rexec
  61. # Ex: restrict_softwares: 'telnet,rlogin,bluetooth' ( This disables 3 services, to disable more services, add services with comma separation. )
  62. restrict_softwares: ''