idrac_vars.yml 3.4 KB

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