Skip to content

Instantly share code, notes, and snippets.

View huevos-y-bacon's full-sized avatar

Huevos y Bacon huevos-y-bacon

View GitHub Profile
@huevos-y-bacon
huevos-y-bacon / vpc-peering.tf
Last active February 10, 2025 16:46
Terraform - Create peering connection between two AWS VPCs in the same AWS account and region and create route entries in all route tables in both VPCs to route traffic between them.
# Create peering copnnection between two AWS VPCs in the same AWS account and region and create route entries in all route tables in both VPCs to route traffic between them.
# variables.tf
variable "vpc_id_left" {
description = "vpc id left"
type = string
}
variable "vpc_id_right" {
description = "vpc id right"
@huevos-y-bacon
huevos-y-bacon / s3clone.py
Created October 25, 2024 11:44
AWS S3 - Bucket Clone and Diff
#!/usr/bin/python
# -*- coding: ASCII -*-
#
# S3 Copy Bucket - Copy all objects of a S3 bucket
#
# Copyright (c) 2022 Carsten Grohmann
# License: MIT (see LICENSE.txt)
# THIS PROGRAM COMES WITH NO WARRANTY
import boto3
@huevos-y-bacon
huevos-y-bacon / athena_export_queries.sh
Last active October 25, 2024 11:59
AWS Athena - Export Named Queries
#!/usr/bin/env bash
WORKGROUP=inspector # Optional
if [ -n "${WORKGROUP}" ]; then
mkdir -p ${WORKGROUP}
WG="--work-group ${WORKGROUP}"
DIR="${WORKGROUP}"
else
WG=""
@huevos-y-bacon
huevos-y-bacon / get_scps.sh
Last active October 3, 2024 11:18
AWS Organizations - Get all custom SCPs and write to json
#!/usr/bin/env bash
# AWS Organizations - Get all custom SCPs and write to json
# shellcheck disable=2016
pols=$(aws organizations list-policies \
--filter SERVICE_CONTROL_POLICY \
--query 'Policies[?AwsManaged==`false`].[Id,Name]' \
--output text)
# shellcheck disable=2162
@huevos-y-bacon
huevos-y-bacon / powershell_ec2_get_drive_info.ps1
Created August 27, 2024 15:27
PowerShell - Commands to show drive details, including EBS volume IDs, on an Amazon EC2 instance
# PowerShell - Commands to show drive details, including EBS volume IDs, on an Amazon EC2 instance
Get-Volume
# Output:
# DriveLetter FriendlyName FileSystemType DriveType HealthStatus OperationalStatus SizeRemaining Size
# ----------- ------------ -------------- --------- ------------ ----------------- ------------- ----
# C NTFS Fixed Healthy OK 43.33 GB 100 GB
# D Swap NTFS Fixed Healthy OK 49.9 GB 50 GB
# E AppLogs NTFS Fixed Healthy OK 49.9 GB 50 GB
@huevos-y-bacon
huevos-y-bacon / driveletter_ebs_volumeid.ps1
Last active August 27, 2024 15:22
PowerShell - Get EBS volume-id for each drive letter
# Display the DiskID and DriveLetter for each disk
# Output looks like this:
# Letter DiskID
# ------ ------
# C vol-0123456780f7d0447
# E vol-01234567882ab1f8e
# Z vol-012345678e9b37c78
# I vol-0123456780fc78bc2
# G vol-0123456781aa7d6df
#!/usr/bin/env bash
# Rename all directories (not files) in the current directory to lowercase, Replace underscores and spaces with hyphens
# Find all directories in the current directory and rename them
find . -maxdepth 1 -mindepth 1 -type d | while read -r d; do
# strip leading ./ and trailing /
d=$(basename "$d")
d2=$(echo "$d" | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | tr '_' '-')
if [ "$d" != "$d2" ]; then
@huevos-y-bacon
huevos-y-bacon / s3_get_all_buckets_configuration.sh
Last active August 7, 2024 10:33
AWS S3 - Extract all S3 buckets' configuration as well as cloudtrail data events config. Output to json per account and per bucket. Multithreaded - use nproc minus 1.
#!/usr/bin/env bash
# Extract all S3 buckets' configuration as well as cloudtrail data events config. Output to json per account and per bucket. Multithreaded - use nproc minus 1.
function get_OUT(){
ALIAS=$(aws iam list-account-aliases --query AccountAliases --output text)
ACC=$(aws sts get-caller-identity --query Account --output text)
if [ -z $ALIAS ]; then
echo ${ACC}
else
@huevos-y-bacon
huevos-y-bacon / ec2_storage_tests.sh
Last active August 7, 2024 10:43
AWS EC2 - Storage Tests
#!/usr/bin/env bash
# shellcheck disable=all
### Mount the instance store volume to the instance
# see:
# https://stackoverflow.com/questions/45167717/mounting-a-nvme-disk-on-aws-ec2
# https://gist.github.com/ktheory/3c3616fca42a3716346b
# install hdparm and htop
@huevos-y-bacon
huevos-y-bacon / stop_instances.py
Created March 8, 2024 13:19
AWS EC2 and RDS - Stop all running EC2 and (optionally) RDS Instances
#!/usr/bin/env python3
import boto3
ec2 = boto3.resource('ec2')
rds = boto3.client('rds')
include_rds = False
def lambda_handler(event, context):
# Stop EC2 instances