This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
WORKGROUP=inspector # Optional | |
if [ -n "${WORKGROUP}" ]; then | |
mkdir -p ${WORKGROUP} | |
WG="--work-group ${WORKGROUP}" | |
DIR="${WORKGROUP}" | |
else | |
WG="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder