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
02_install-kibana.yaml 424 B
Newer Older
  • Learn to ignore specific revisions
  • Nicolas's avatar
    Nicolas committed
    - name: Add Kibana repository key
      apt_key:
        url: "https://artifacts.elastic.co/GPG-KEY-elasticsearch"
        id: "46095ACC8548582C1A2699A9D27D666CD88E42B4"
        state: present
    
    - name: Add Kibana repository
      apt_repository:
        repo: "deb https://artifacts.elastic.co/packages/7.x/apt stable main"
        state: present
    
    - name: Update APT
      apt:
        update_cache: yes
    
    - name: Install Kibana
      apt:
        name: kibana=7.17.11