main.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. # Usage: set_fqdn.yml
  16. etc_hosts_file_dest: /etc/hosts
  17. file_mode: '0644'
  18. # Usage: firewall_settings.yml
  19. https_port1: "80/tcp"
  20. https_port2: "443/tcp"
  21. ldap_port1: "389/tcp"
  22. ldap_port2: "636/tcp"
  23. kerberos_port1: "88/tcp"
  24. kerberos_port2: "464/tcp"
  25. kerberos_port3: "88/udp"
  26. kerberos_port4: "464/udp"
  27. dns_port1: "53/tcp"
  28. dns_port2: "53/udp"
  29. dt_port1: "7389/tcp"
  30. ntp_port1: "123/udp"
  31. # Usage: enable_dnf_module.yml
  32. os_centos: 'centos'
  33. os_rocky: 'rocky'
  34. os_version: '8.0'
  35. # Usage: install_packages.yml
  36. ipa_server_packages:
  37. - bind
  38. - bind-dyndb-ldap
  39. - ipa-server-dns
  40. - freeipa-server
  41. # Usage: install_ipa_server.yml
  42. resolv_conf_path: /etc/resolv.conf
  43. temp_resolv_conf_path: /tmp/resolv.conf
  44. resolv_file_mode: '0644'
  45. server_file: "{{ playbook_dir }}/roles/control_plane_security/files/.ipavars.yml"