Skip to content

Instantly share code, notes, and snippets.

@hareku
hareku / README.md
Last active December 20, 2021 08:15
hareku/go-timestreamer with aws-sam template

How to deploy

mkdir myapp
cd myapp

# clone lambda functions
git clone https://github.com/hareku/go-timestreamer

# create and copy template for AWS SAM
@hareku
hareku / spinnaker.tf
Created May 2, 2019 03:50
Spinnaker + AWS Terraform
#####################################
# Namespace: Spinnaker
#####################################
resource "kubernetes_namespace" "spinnaker" {
metadata {
name = "spinnaker"
}
}
#####################################