view_node.html.erb 874 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <h2 class="title"><br><br><center>Node Information</center></h2>
  2. <div class="container">
  3. <table class="table table-hover">
  4. <thead>
  5. <tr>
  6. <th>Name</th>
  7. <th>IP</th>
  8. <th>Public IP</th>
  9. <th>Account</th>
  10. <th>Size</th>
  11. <th>Subnet</th>
  12. <th>AZ</th>
  13. <th>VPC</th>
  14. <th>SSH Key</th>
  15. <th>AMI</th>
  16. <th>State</th>
  17. <th>Security Group</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <tr>
  22. <td><%= node['Name'] %></td>
  23. <td><%= node['IP'] %></td>
  24. <td><%= node['Public_IP'] %></td>
  25. <td><%= node['Account'] %></td>
  26. <td><%= node['Size'] %></td>
  27. <td><%= node['Subnet'] %></td>
  28. <td><%= node['AZ'] %></td>
  29. <td><%= node['VPC'] %></td>
  30. <td><%= node['SSH-Key'] %></td>
  31. <td><%= node['AMI'] %></td>
  32. <td><%= node['State'] %></td>
  33. <td><%= node['SecurityGroup'] %></td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. </div>