Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
ssh-config_backup.j2 480 B
Newer Older
  • Learn to ignore specific revisions
  • #jinja2:lstrip_blocks: True
    # ############################################# #
    #       This file is managed by Ansible         #
    #       Manual edition will be overridden       #
    #  https://lab.frogg.it/freezed/ansible-debian  #
    # ############################################# #
    
    {% for host in groups['production']  %}
    Host {{ host }}
      User {{ hostvars[host]['my_user'] }}
      Hostname {{ hostvars[host]['ansible_host'] }}
      Port {{ hostvars[host]['ansible_port'] }}
    
    {% endfor %}