Example DevOps
// Highlighting usage of deprecated EC2 instance types
if (
node.resourceType === "AWS/Instance" &&
node.InstanceType.startsWith("m3.")
) {
return {
type: "info",
message: "Consider moving from m3 instance type for better efficiency.",
resourceId: node._id,
};
}