This file contains hidden or 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
[ | |
{ | |
"name": "POK3R Default v1.14", | |
"author": "Vortex" | |
}, | |
[ | |
{ | |
"c": "#3c4041", | |
"t": "#aba18b", | |
"p": "DCS", |
This file contains hidden or 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
[ | |
{ | |
"name": "POK3R Default", | |
"author": "Vortex" | |
}, | |
[ | |
{ | |
"y": 1.5, | |
"c": "#3c4041", | |
"t": "#aba18b", |
This file contains hidden or 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
[ | |
{ | |
"name": "POK3R Layer 2 Windows", | |
"author": "sublimal", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-C1xx", | |
"plate": true | |
}, | |
[ |
This file contains hidden or 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
[ | |
{ | |
"name": "POK3R Layer 3 OSX", | |
"author": "sublimal", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-C1xx", | |
"plate": true | |
}, | |
[ |
This file contains hidden or 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
#!/bin/bash | |
# source: https://gist.github.com/atward/7a2eb1b4a78fbaebe585 | |
# here be dragons: this is as dangerous as it looks | |
## terraform variable defaults | |
# takes *.tf and assigns env=default (if any) | |
# - map not supported (obvious reasons) | |
# - Tested on Darwin sed(1) only | |
function source_tfdefaults() { | |
eval "$( |
This file contains hidden or 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
#cloud-init | |
# https://docs.chef.io/packages.html#enterprise-linux | |
# vendor chef-repo to /var/lib/chef with cookbooks in /var/lib/chef/cookbooks | |
yum_repos: | |
chef-stable: | |
name: chef-stable | |
baseurl: https://packages.chef.io/stable-yum/el/7/\$basearch/ | |
enabled: true | |
failovermethod: priority |
This file contains hidden or 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
# NOTE: there is a 4k CustomResource response limit, so keep all templates well under that | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'CloudFormation Templating Custom Resource' | |
Resources: | |
TemplateFunctionRole: | |
Type: AWS::IAM::Role | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: 2012-10-17 |
This file contains hidden or 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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'Custom resource example - ASG suspend/resume' | |
Parameters: | |
Input: | |
Type: String | |
Description: Make ASG | |
Default: true | |
AllowedValues: [true, false] |
This file contains hidden or 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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'Custom resource test' | |
Parameters: | |
Value: | |
Type: Number | |
Description: input a number | |
Default: 1 | |
Resources: |
This file contains hidden or 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 python | |
import boto3 | |
import json | |
import sys | |
import urllib2 | |
import webbrowser | |
from urllib import urlencode |
OlderNewer