sudo tailscale up
sudo mkdir -p /path/to/my/state/dir/hydroxide
#!/bin/bash | |
CATEGORY=$1 | |
EMOJI_BASE_URL="https://homestead-social.sfo2.cdn.digitaloceanspaces.com/emoji_packs" | |
URL_ENCODED_CATEGORY=$(echo $CATEGORY | sed 's/ /%20/g') | |
NO_SPACE_CATEGORY=$(echo $CATEGORY | sed 's/ /_/g') | |
import() { | |
CATEGORY=$1 | |
EMOJI_BASE_URL="https://homestead-social.sfo2.cdn.digitaloceanspaces.com/emoji_packs" |
I hereby claim:
To claim this, I am signing this object:
➜ make test_integration | |
./test/integration/gcloud/run.sh | |
Creating main.tf file | |
Creating outputs.tf file | |
Fetching https://github.com/terraform-google-modules/kitchen-inspec.git | |
Fetching gem metadata from https://rubygems.org/........ | |
Fetching gem metadata from https://rubygems.org/........ | |
Fetching gem metadata from https://rubygems.org/. | |
Fetching gem metadata from https://rubygems.org/. |
➜ issue-1826 cat main.tf | |
locals { | |
credentials_file_path = "./sa-key.json" | |
} | |
provider "google" { | |
credentials = "${file(local.credentials_file_path)}" | |
} | |
resource "google_project" "project" { |
#!/bin/bash | |
set -e | |
if [ "$#" -lt 4 ]; then | |
>&2 echo "Not all expected arguments set." | |
exit 1 | |
fi | |
PROJECT_ID=$1 |
➜ terraform plan | |
Refreshing Terraform state in-memory prior to plan... | |
The refreshed state will be used to calculate this plan, but will not be | |
persisted to local or remote state storage. | |
------------------------------------------------------------------------ | |
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Description: This script spins up a multi node Docker Swarm w/ Docker | |
# Networking and Consul discovery w/ Registrator | |
# Author: Ryan C Koch | |
# ryanckoch@gmail.com | |
# Usage: bash docker-playground.sh usage | |
PLAYGROUND_NAME="docker-playground" | |
CONSUL_IMAGE="progrium/consul" |
#!/bin/bash | |
# ------------------------------------------------------------------ | |
# Author: Ryan C Koch - ryanckoch@gmail.com | |
# Purpose: CHECK TCP AND UDP CONNECTIVITY BETWEEN | |
# SOURCE AND DESTINATION HOSTS | |
# ------------------------------------------------------------------ | |
SOURCE_FILE="source.hosts" | |
DESTINATION_FILE="destination.hosts" | |
LOG_VERBOSE="logs/verbose.log" |