I hereby claim:
- I am estahn on github.
- I am estahn (https://keybase.io/estahn) on keybase.
- I have a public key ASC2Q8Hprpg4hYZylH_pXmBCVxFxZif6J5JqVOWf0CYHPwo
To claim this, I am signing this object:
--- | |
- debug: var=name | |
- name: First include of roleA | |
include_role: | |
name: roleA | |
vars: | |
name: first include | |
- name: Second include of roleA |
{% import 'roles/cfn-orchestrator/templates/cfn.macros.j2' as cfn with context %} | |
--- | |
AWSTemplateFormatVersion: '2010-09-09' | |
{{ cfn.metadata(1) }} | |
Description: > | |
Creates a VPC with DNS and Public IPs enabled. | |
Creates 4 subnets in 2 AZs (a pair of public/private subnets in each AZ). |
var handler = require('lambda-formation').resource.create; | |
var util = require('lambda-formation').util; | |
var aws = require("aws-sdk"); | |
/** | |
* Creates a Hosted Zone and supports delegation sets | |
* | |
* Type: "AWS::Route53::HostedZone" | |
* Properties: | |
* DelegationSetId: <Your delegation set id> |
--- | |
AWSTemplateFormatVersion: '2010-09-09' | |
Metadata: | |
Version: 1 | |
LastUpdated: 2017-05-16 16:58:35 | |
UpdatedBy: estahn | |
Comments: Generated by cfn-ansible | |
Description: > |
var handler = require('lambda-formation').resource.create; | |
var util = require('lambda-formation').util; | |
var aws = require("aws-sdk"); | |
var uuidV4 = require('uuid/v4'); | |
/** | |
* Creates a Hosted Zone and supports delegation sets | |
* | |
* Type: "AWS::Route53::HostedZone" | |
* Properties: |
[Unit] | |
Description=Metabase server | |
After=syslog.target | |
After=network.target | |
[Service] | |
WorkingDirectory=/home/data/tools/metabase | |
ExecStart=/usr/bin/java -jar /home/data/tools/metabase/metabase.jar | |
Environment=MB_JETTY_PORT=8080 | |
User=data |
#!/bin/sh | |
KUBECTL=$(which kubectl) | |
echo "CURRENT VERSION:" | |
kubectl version | |
echo "" | |
curl -o ${KUBECTL} -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/darwin/amd64/kubectl | |
chmod 755 ${KUBECTL} |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
_process_user() { | |
_detach_policies $1 & | |
_delete_access_keys $1 & | |
wait | |
_delete_user $1 & | |
} | |
_detach_policies() { |
#!/bin/bash | |
host=$1 | |
user=$2 | |
password=$3 | |
echo '' > $0.queue | |
databases=$(mysql -h $host -u $user -p$password -e "show databases" -sN | grep -v information_schema | grep -v mysql | grep -v sys) | |
for database in $databases; do | |
for table in $(mysql -h $host -u $user -p"$password" -N -B -e "show tables from \`$database\`"); do |