Skip to content

Instantly share code, notes, and snippets.

@Jayavenk07
Jayavenk07 / aws_resource_list.sh
Created December 29, 2025 10:48 — forked from iam-veeramalla/aws_resource_list.sh
Script to automate the process of listing all the resources in an AWS account
#!/bin/bash
###############################################################################
# Author: Abhishek Veeramalla
# Version: v0.0.1
# Script to automate the process of listing all the resources in an AWS account
#
# Below are the services that are supported by this script:
# 1. EC2
#!/bin/bash
# Variables
JENKINS_HOME="/var/lib/jenkins" # Replace with your Jenkins home directory
S3_BUCKET="s3://your-s3-bucket-name" # Replace with your S3 bucket name
DATE=$(date +%Y-%m-%d) # Today's date
# Check if AWS CLI is installed
if ! command -v aws &> /dev/null; then
echo "AWS CLI is not installed. Please install it to proceed."
@Jayavenk07
Jayavenk07 / headless-service-demo.md
Created November 6, 2025 20:23 — forked from iam-veeramalla/headless-service-demo.md
Kubernetes Headless Service Demo

Headless Kubernetes Service

Service

apiVersion: v1
kind: Service
metadata:
  name: my-db-headless-service
spec: