Skip to content

Instantly share code, notes, and snippets.

View p0bailey's full-sized avatar
😃
"A smooth sea never made a skilled sailor."

Phillip Bailey p0bailey

😃
"A smooth sea never made a skilled sailor."
View GitHub Profile

Keybase proof

I hereby claim:

  • I am p0bailey on github.
  • I am pbailey (https://keybase.io/pbailey) on keybase.
  • I have a public key ASDSpj5zlX60WPiiEg200dB4W0x3_fwiwgFcOXIFwPmRlQo

To claim this, I am signing this object:

@p0bailey
p0bailey / README.md
Last active August 1, 2019 00:01
Terraform Module README

demo terraform module

A terraform module to provide a in AWS/AZURE/ETC,ETC.

This should be used an a generic template to be included in every terraform module.

Module Input Variables

@p0bailey
p0bailey / covid-19.md
Last active March 26, 2020 21:14
A curated list of resources to stay informed, healthy and productive during covid-19 (AKA coronavirus) pandemic.
#!/bin/sh
## Requirements: tmux curl watch.
tmux new-session -d
tmux split-window -d -t 0 -h
tmux split-window -d -t 0 -v
tmux split-window -d -t 2 -v
# Use Alt-arrow keys without prefix key to switch panes
@p0bailey
p0bailey / covid19-tmux-dashboard.md
Last active April 17, 2020 19:33
Covid19 Tmux Dashboard
@p0bailey
p0bailey / Makefile
Last active March 27, 2021 09:22
Terraform Makefile
MAKEFLAGS += --silent
.PHONY: all init plan apply show destroy output graph
all:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
init: ## Initialize a new or existing Terraform configuration
terraform validate
terraform init