// Name: EC2 Security Group Modifier
// Description: Select an EC2 instance, view its security groups and inbound rules, and add your current IP to a chosen rule for easy SSH access.
// Author: anjaneyasivan
// GitHub: anjaneyasivan
import "@johnlindquist/kit"
const AWS_ACCESS_KEY_ID = await env("AWS_ACCESS_KEY_ID", {
secret: true,
placeholder: "Enter your AWS Access Key ID",
hint: "Stored securely in ~/.kenv/.env",
})
const AWS_SECRET_ACCESS_KEY = await env("AWS_SECRET_ACCESS_KEY", {
secret: true,
placeholder: "Enter your AWS Secret Access Key",
hint: "Stored securely in ~/.kenv/.env",
})
const AWS_REGION = await env(