Skip to content

Instantly share code, notes, and snippets.

@suzuki-shunsuke
suzuki-shunsuke / sentry_example.go
Created August 1, 2020 00:35
Example of sentry-go
package sentry
import (
"time"
"github.com/getsentry/sentry-go"
)
type Event struct {
Error error
commands:
apply:
description: |
Run `terraform apply` and add a comment to the pull request or Git commit.
parameters:
apply_options:
default: ""
description: |
The options of `terraform apply` command. The option `-auto-approve` is set automatically.
For example, `-refresh=false -parallelism=20`.
@suzuki-shunsuke
suzuki-shunsuke / README.md
Last active December 2, 2019 13:49
突撃!隣のTerraform

最初に 5 ~ 10 分程度お時間を頂いて本日お時間を頂いた経緯などを説明したあと、色々お話を聞かせてもらえたらと思います。

本日のトピックを簡潔に言うと

  • 如何に Terraform の state を分割するか
  • 如何に Terraform によるリソースの管理を SRE から developer に委譲するか

弊社の現状の簡単な説明

  • AWS のリソースを Terraform で管理している
@suzuki-shunsuke
suzuki-shunsuke / send-pr.sh
Last active September 20, 2019 12:56
The shell function to create a pull request from the current feature branch.
send-pr() {
local remote=`git config branch.master.remote`
local remote_url=`git config remote.${remote}.url`
case "$remote_url" in
https://github.com*)
git-pr
;;
https://ghe.example.com*)
ghe-pr
;;
package main
import (
"fmt"
"os"
"os/exec"
)
func main() {
cmd := exec.Command("sh", "-c", "ls | fzf")
@suzuki-shunsuke
suzuki-shunsuke / dctag.sh
Created August 7, 2019 11:09
The shell function to list Docker image tags. It depends on https://github.com/genuinetools/reg .
dctag() {
if [ $# -eq 0 -o "$1" = "help" -o "$1" = "--help" -o "$1" = "-help" ]; then
cat << EOS
List Docker image tags
Usage: $ dctag <image name>
ex. $ dctag alpine
EOS
return 0
fi
if [ $# -ne 1 ]; then
@suzuki-shunsuke
suzuki-shunsuke / create-docker-config-json.sh
Last active August 4, 2019 03:07
The one liner to create a ~/.docker/config.json for CI/CD. The environment variables USER_NAME, PASSWORD, and REGISTRY are parameters to login the Docker registry.
docker run -v /var/run/docker.sock:/var/run/docker.sock -ti --rm -e USER_NAME=$USER_NAME -e PASSWORD=$PASSWORD docker:19.03.1 sh -c 'echo $PASSWORD | docker login $REGISTRY --username $USER_NAME --password-stdin > /dev/null 2> /tmp/error.txt && cat /root/.docker/config.json || (cat /tmp/error.txt >&2 && exit 1)'
{
"permissions" : {
"outputs" : [ "create", "edit", "terminate", "read" ],
"sources" : [ "read" ],
"indexranges" : [ "read", "rebuild" ],
"deflector" : [ "read", "cycle" ],
"loggers" : [ "readsubsystem", "edit", "editsubsystem", "read" ],
"inputs" : [ "terminate", "read", "create", "changestate", "edit" ],
"lbstatus" : [ "change" ],
"roles" : [ "edit", "create", "read", "delete" ],
@suzuki-shunsuke
suzuki-shunsuke / check-broken-url.sh
Last active December 1, 2018 09:30
shell script to check whether broken urls are included in files
# xurls: https://github.com/mvdan/xurls
s=0
for url in `find . -name "*" -type f | xargs xurls | grep -v "ldap.*"`; do
if ! `curl -LI $url -o /dev/null --fail -s`; then
echo $url
s=1
fi
done
if [ $s -ne 0 ]; then
exit 1
@suzuki-shunsuke
suzuki-shunsuke / check-broken-url.sh
Created December 1, 2018 09:29
shell script to check whether broken urls are included in files
s=0
for url in `find ./test -name "*" -type f | xargs xurls | grep -v "ldap.*"`; do
if ! `curl -LI $url -o /dev/null --fail -s`; then
echo $url
s=1
fi
done
if [ $s -ne 0 ]; then
exit 1
fi