summaryrefslogtreecommitdiff
path: root/app/views/help/instance_configuration/_ssh_info.html.haml
blob: 987cc61b3f68aa9ca12489320187620c1700b7be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- ssh_info = @instance_configuration.settings[:ssh_algorithms_hashes]
- if ssh_info.any?
  - content_for :table_content do
    %li= link_to 'SSH host keys fingerprints', '#ssh-host-keys-fingerprints'

  - content_for :settings_content do
    %h2#ssh-host-keys-fingerprints
      SSH host keys fingerprints

    %p
      Below are the fingerprints for the current instance SSH host keys.

    .table-responsive
      %table
        %thead
          %tr
            %th Algorithm
            %th MD5
            %th SHA256
        %tbody
          - ssh_info.each do |algorithm|
            %tr
              %td= algorithm[:name]
              %td
                %code= instance_configuration_cell_html(algorithm[:md5])
              %td
                %code= instance_configuration_cell_html(algorithm[:sha256])