idrac_vars.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # Copyright 2021 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. ### Usage: provision_idrac ###
  16. # This indicates the system profile name used for BIOS configuration of the server
  17. # Accepted values: - "Performance", "PerformancePerWatt(DAPC)", "PerformancePerWatt(OS)", "WorkstationPerformance".
  18. # Default value: "Performance"
  19. idrac_system_profile: "Performance"
  20. # Boolean value indicating whether OMNIA should perform firmware update or not
  21. # Accepted values: true, false
  22. # Default value: false
  23. firmware_update_required: false
  24. # This is the list of poweredge server models
  25. # The firmware updates will be downloaded only for the below list of models
  26. # Update the list in the format given below
  27. # poweredge_model: R640,R740,C4140
  28. # supported models: C4140,C6420,C6520,R240,R340,R440,R540,R640,R650,R740,R740xd,R740xd2,R750,R750xa,R840,R940,R940xa
  29. poweredge_model: C6420
  30. #****Security Requirements Configuration****#
  31. ###Enable the security parameters listed below only if you want to configure the security settings in idrac###
  32. ###This feature will be enabled in all the servers (hpc nodes) listed in the idrac inventory###
  33. ###To apply these settings please execute appropriate files in control_plane/tools directory###
  34. ### Usage: idrac_secure_boot ###
  35. # Specify whether the secure boot mode to be enabled
  36. # Default value: "disabled"
  37. # Accepted values: "enabled", "disabled"
  38. uefi_secure_boot: "disabled"
  39. ### Usage: idrac_system_lockdown ###
  40. # Specify whether the system lockdown to be enabled
  41. # Default value: "disabled"
  42. # Accepted values: "enabled", "disabled"
  43. # Make sure system_lockdown is enabled only after OS provisioning is completed
  44. system_lockdown: "disabled"
  45. ### Usage: idrac_2fa ###
  46. # Specify whether the two factor authentication to be enabled
  47. # Default value: "disabled"
  48. # Accepted values: "enabled", "disabled"
  49. # [WARNING] Once 2FA is enabled, the user has to disable 2FA manually. Other iDRAC playbooks won't run if 2FA is enabled
  50. # Update 2FA input parameters in idrac_tools_vars.yml if two_factor_authentication is enabled
  51. # Command to edit idrac_tools_vars.yml: ansible-vault edit idrac_tools_vars.yml --vault-password-file .idrac_vault_key
  52. two_factor_authentication: "disabled"
  53. ### Usage: idrac_ldap ###
  54. # Specify whether the LDAP directory services to be enabled
  55. # Default value: "disabled"
  56. # Accepted values: "enabled", "disabled"
  57. # Update 2FA input parameters in idrac_tools_vars.yml if two_factor_authentication is enabled
  58. # Command to edit idrac_tools_vars.yml: ansible-vault edit idrac_tools_vars.yml --vault-password-file .idrac_vault_key
  59. ldap_directory_services: "disabled"