How to find EC2 instances in my production environment that don’t have EBS snapshots enabled?
You can easily find EC2 instances in your production using nOps GraphQL Explorer.
nOps gives you the ability to access and automate all of your cloud and hybrid cloud data in real time. By using GraphQL explorer. you can run quiries to find EC2 instances that don’t have EBS snapshots enabled

The GraphQL explorer has a bunch of other features that could make your life much easier like saving your quiries for the repeated use so you won’t have to rewrite the quiries everytime and you would have your private library of saved quiries or if you prefer to share it publicly. you can do that too.
Want to explore more, Signup for nOps and try out the full version of GraphQL

The GraphQL explorer has a bunch of other features that could make your life much easier like saving your quiries for the repeated use so you won’t have to rewrite the quiries everytime and you would have your private library of saved quiries or if you prefer to share it publicly. you can do that too
Want to explore more, Signup for nOps and try out the full version of GraphQL
GraphQL Code Example
ABOUT THIS NODE.JS SAMPLE: This sample is part of the SDK for JavaScript Developer Guide topic at
// https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/ec2-example-security-groups.html
// Load the AWS SDK for Node.js
var AWS = require('aws-sdk');
// Load credentials and set region from JSON file
AWS.config.update({region: 'REGION'});
// Create EC2 service object
var ec2 = new AWS.EC2({apiVersion: '2016-11-15'});
// Variable to hold a ID of a VPC
var vpc = null;
// Retrieve the ID of a VPC