Skip to content

Instantly share code, notes, and snippets.

@MrRaph
MrRaph / bootstrap_salt.sh
Created July 23, 2018 13:59
Trying to fixe bootstrap_salt.sh as it doesn't work with Amazon Linux 2
#!/bin/sh -
#======================================================================================================================
# vim: softtabstop=4 shiftwidth=4 expandtab fenc=utf-8 spell spelllang=en cc=120
#======================================================================================================================
#
# FILE: bootstrap-salt.sh
#
# DESCRIPTION: Bootstrap Salt installation for various systems/distributions
#
# BUGS: https://github.com/saltstack/salt-bootstrap/issues
@MrRaph
MrRaph / security-group-cleanup.py
Last active November 19, 2018 13:31 — forked from TomRyan-321/security-group-cleanup.py
Security Group Cleanup using boto3 with RDS check fixed
#!/usr/bin/env python
import boto3
import argparse
def lookup_by_id(sgid):
sg = ec2.get_all_security_groups(group_ids=sgid)
return sg[0].name