Skip to content

Instantly share code, notes, and snippets.

View AndrewFarley's full-sized avatar

Farley Farley (yes, really) AndrewFarley

  • New Plymouth, New Zealand
View GitHub Profile
@AndrewFarley
AndrewFarley / AWS-MFA-Complete.json
Created July 9, 2021 15:29
AWS-MFA-Complete.json
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowListUsersAllIfMFA",
"Effect": "Allow",
"Action": [
"iam:ListUsers",
"iam:ListPolicies",
"iam:ListGroups",
@AndrewFarley
AndrewFarley / delete-github-actions-old-workflows.py
Created June 26, 2021 17:58
Github Actions API Python script to delete workflows of a specific type
#!/usr/bin/env python3
from ghapi.all import GhApi
import time
import json
api = GhApi()
# If you have rate limit issues, you might need this to check it...
#data = api.rate_limit.get()
#print(data)
#exit(0)
@AndrewFarley
AndrewFarley / multiregional-aws-terraform-providers.tf
Last active June 15, 2021 13:20
A file useful for CloudTrail or Guardduty to be able to iterate on all the AWS Regions easily
# List of all (public) AWS regions as of Jun 15, 2021
locals {
aws_regions_list = [
"ap-northeast-1",
"ap-northeast-2",
"ap-northeast-3",
"ap-south-1",
"ap-southeast-1",
"ap-southeast-2",
"ca-central-1",
@AndrewFarley
AndrewFarley / gitlab-runner-userdata.sh
Created October 19, 2020 05:43
Gitlab Runner ec2 autoscaling userdata - auto-renew ecr credentials/access
#!/bin/bash
apt update -y && apt install awscli make joe -y
mkdir -p ~/.aws/
cat > ~/.aws/config <<EOL
[default]
region = us-east-2
aws_access_key_id = TODOTODO
aws_secret_access_key = TODOTODO
EOL
aws ecr get-login --region us-east-2 | sed 's/-e none//' | bash
@AndrewFarley
AndrewFarley / gitlab-runner-aws-autoscaling-ec2-config.toml
Created October 19, 2020 05:40
Gitlab Runner - AWS EC2 Autoscaling Runners config.toml file
concurrent = 10
check_interval = 0
[session_server]
session_timeout = 1800
[[runners]]
name = "shared-autoscaling"
url = "https://gitlab.WEBSITE.com/"
token = "AUTO-INSERTED-FROM-REGISTER"
@AndrewFarley
AndrewFarley / backup-gitlab-to-s3.sh
Created January 28, 2018 19:13
Gitlab Backup to S3
#!/bin/bash
LOGFILE=/tmp/backup-gitlab-to-s3.log
GITLAB_BACKUP_FOLDER=/var/opt/gitlab/backups
S3_FILE_PREFIX=gitlab
S3_BUCKET_PATH=bucket-name-goes-here/folder-here
SLACK_USERNAME="Backup Gitlab Daily - `hostname`"
SLACK_CHANNEL="#od-infra-monitoring"
SLACK_ICON="https://s3.amazonaws.com/kudelabs-archives/harddrive256.png"

Keybase proof

I hereby claim:

  • I am andrewfarley on github.
  • I am farleyfarley (https://keybase.io/farleyfarley) on keybase.
  • I have a public key ASBUtTMxseOpuT_0pnSQpvra0ZWIHVQCfJGLAOhx9Ns9xAo

To claim this, I am signing this object:

kubectl create clusterrolebinding cluster-admin-binding \
--clusterrole cluster-admin \
--user $(gcloud config get-value account)
import bcrypt
import hashlib
import time
import random
import string
from datetime import datetime, date
print("100 iterations of hashing")
print("=========================")
@AndrewFarley
AndrewFarley / Ubuntu 16.04
Created July 4, 2018 21:37 — forked from dhoeric/Ubuntu 16.04
install-docker-aws-ec2-user-data
#!/bin/bash
# Install docker
apt-get update
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt-get update