<% const priorityLabel = ['CRITICAL', 'Required', 'Recommend'][metadata.priority-1] || 'Recommend' const priorityColor = ['danger', 'warning', 'secondary'][metadata.priority-1] || 'secondary' %>

<%= metadata.name %>

<%= metadata.description %>

Category: <%= metadata.bestPracticeCategory %> <%= metadata.awsServiceCategory %> - <%= metadata.awsService %>

Priority: <%= metadata.priority %> - <%= priorityLabel %> <%= metadata.priorityReason %>

Operations used in check function

<% metadata.commandUsedInCheckFunction.forEach(({ name, reason }) => { %>
<%= name %>
<%= reason %>
<% }) %>

Operations used in fix function

<% metadata.commandUsedInFixFunction.forEach(({ name, reason }) => { %>
<%= name %>
<%= reason %>
<% }) %>