aws ec2 attach-network-interface \
--region $AWS_REGION \
--instance-id $INSTANCE_ID \
--device-index 1 \
--network-interface-id $ONLINE_ENI_ID
This file contains 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
[www] | |
user = apache | |
group = apache | |
listen = /run/php-fpm/www.sock | |
listen.allowed_clients = 127.0.0.1 | |
pm = dynamic | |
pm.max_children = 50 | |
pm.start_servers = 5 | |
pm.min_spare_servers = 5 | |
pm.max_spare_servers = 35 |
This file contains 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
require 'yaml' | |
require 'json' | |
x = <<-HEREDOC | |
--- | |
some: | |
- yaml: foo | |
here: bar | |
HEREDOC | |
This file contains 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/ruby | |
# Recaman Sequence Generator | |
HIEGHT=2160 | |
WIDTH=3840 | |
SVG_PREAMBLE = <<~HEREDOC | |
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" |
This file contains 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 -e | |
# Get list of buckets | |
S3_BUCKETS=( `aws s3api list-buckets --query "Buckets[].Name" --output=text` ) | |
for bucket in "${S3_BUCKETS[@]}"; do | |
BUCKET_LOGGING=`aws s3api get-bucket-logging --bucket $bucket` | |
if [ -n "$BUCKET_LOGGING" ]; then | |
echo "$bucket: $BUCKET_LOGGING" | |
fi |
This file contains 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 -ex | |
# Steal an ENI | |
# (uses "ONLINE_ENI_ID" from the environment) | |
# Get some instance basics | |
METADATA_ENDPOINT="http://169.254.169.254/latest/dynamic/instance-identity/document" | |
AWS_REGION=`curl -s $METADATA_ENDPOINT | jq .region -r` | |
INSTANCE_ID=`curl -s http://169.254.169.254/latest/meta-data/instance-id` |
NewerOlder