Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am yamakiroshi on github.
  • I am yamakiroshi (https://keybase.io/yamakiroshi) on keybase.
  • I have a public key ASDpOtEsd3MySkojPn1I4xC2iwsZcV04M5dOJWuH8wQdfwo

To claim this, I am signing this object:

resource "digitalocean_droplet" "mysql" {
count = 3
image = "ubuntu-16-04-x64"
name = "mysql-${count.index}"
region = "lon1"
size = "s-1vcpu-1gb"
private_networking = true
ssh_keys = [
"${var.ssh_fingerprint}"
]
@Yamakiroshi
Yamakiroshi / my.cnf
Last active February 16, 2018 08:40
mysql Configuration for 5.7 Group Replication used for Replication scripts such as Terraform
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.