Skip to content

Instantly share code, notes, and snippets.

View btobolaski's full-sized avatar

Brendan Tobolaski btobolaski

View GitHub Profile
This file has been truncated, but you can view the full file.
2019/04/26 19:20:58 [INFO] Terraform version: 0.11.13
2019/04/26 19:20:58 [INFO] Go runtime version: go1.11.5
2019/04/26 19:20:58 [INFO] CLI args: []string{"/home/signalvine/workspace/container-deploy/create-sse/ecs-infrastructure/vendor/terraform/terraform", "apply", "plan"}
2019/04/26 19:20:58 [DEBUG] Attempting to open CLI config file: /home/signalvine/.terraformrc
2019/04/26 19:20:58 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2019/04/26 19:20:58 [INFO] CLI command args: []string{"apply", "plan"}
2019/04/26 19:20:58 [INFO] command: initializing backend from plan: s3
2019/04/26 19:20:58 [INFO] Building AWS region structure
2019/04/26 19:20:58 [INFO] Building AWS auth structure
2019/04/26 19:20:58 [INFO] Setting AWS metadata API timeout to 100ms

Keybase proof

I hereby claim:

  • I am btobolaski on github.
  • I am btobolaski (https://keybase.io/btobolaski) on keybase.
  • I have a public key whose fingerprint is F380 705E 318F 0FE7 0838 563E 9122 C1C8 277E 1751

To claim this, I am signing this object:

@btobolaski
btobolaski / nineteen.sh
Created January 19, 2016 03:05 — forked from bhundven/nineteen.sh
Enlightenment 19 build script for Ubuntu/Debian
#!/bin/bash
# vi: ts=4:sw=4:et
#
# NINETEEN.SH
# This script allows you to install/update Enlightenment 19 git version on
# Ubuntu 14.04 LTS or Debian wheezy/sid, or remove E19 git from your system.
# Originally from: http://ubuntuforums.org/showthread.php?t=2203190
# By: Philippe J. Guillaumie (batden AT sfr DOT fr).
# Additional updates by: Bryan Hundven (bryanhundven AT gmail DOT com).
#
@btobolaski
btobolaski / keybase.md
Created March 24, 2014 18:44
keybase.md

Keybase proof

I hereby claim:

  • I am btobolaski on github.
  • I am btobolaski (https://keybase.io/btobolaski) on keybase.
  • I have a public key whose fingerprint is E371 7137 BABC 3062 333B 95FC DFEF C102 ED49 5DCC

To claim this, I am signing this object:

@btobolaski
btobolaski / 001-owncloud.conf
Created March 19, 2014 05:22
Docker based install of Owncloud. It uses persistent data using a mounted directory.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/owncloud
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/owncloud>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
@btobolaski
btobolaski / ghost.conf
Created March 7, 2014 05:49
An Upstart script for starting and keeping a ghost blog running.
description "Ghost Blog"
console output
start on runlevel [2345]
stop on shutdown
respawn
respawn limit 99 5
script

rage-quit support for bash

HOW TO INSTALL

Put flip somewhere in your $PATH and chmod a+x it.

Copy fuck into ~/.bashrc.

@btobolaski
btobolaski / build.sh
Created October 11, 2013 03:10
Jekyll build scripts for Jenkins
#!/bin/bash --login
cd $WORKSPACE
rbenv rehash
LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" jekyll build
@btobolaski
btobolaski / attributes.rb
Last active December 19, 2015 06:19
Logstash as a chef handler
default['chef_client']['handler']['gelf']['host'] = '<hostname/ip>'
default['chef_client']['handler']['gelf']['port'] = 12201
default['chef_client']['handler']['gelf']['report_host'] = node['hostname']
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);