Created
July 31, 2017 18:03
-
-
Save lukassup/67b10cd32c73736decad4cdb1cb2effb to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| # download CloudFlare SSL binaries if needed | |
| CFSSL='cfssl' | |
| hash $CFSSL || { | |
| curl -L -o cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 \ | |
| && chmod +x cfssl \ | |
| && CFSSL='./cfssl' | |
| } | |
| CFSSLJSON='cfssljson' | |
| hash $CFSSLJSON || { | |
| curl -L -o cfssljson https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 \ | |
| && chmod +x cfssljson \ | |
| && CFSSLJSON='./cfssljson' | |
| } | |
| # setup CA | |
| cat > ca-config.json << EOF | |
| { | |
| "signing": { | |
| "default": { | |
| "expiry": "8760h" | |
| }, | |
| "profiles": { | |
| "server": { | |
| "usages": ["signing", "key encipherment", "server auth", "client auth"], | |
| "expiry": "8760h" | |
| } | |
| } | |
| } | |
| } | |
| EOF | |
| cat > ca-csr.json << EOF | |
| { | |
| "CN": "Vagrant CA", | |
| "key": { | |
| "algo": "rsa", | |
| "size": 2048 | |
| }, | |
| "names": [ | |
| { | |
| "O": "Vagrant", | |
| "OU": "Infrastructure" | |
| } | |
| ] | |
| } | |
| EOF | |
| $CFSSL gencert -initca ca-csr.json | $CFSSLJSON -bare ca | |
| # setup keypairs for each node | |
| for node in node-1 node-2 node-3; do | |
| cat > "$node-csr.json" << EOF | |
| { | |
| "CN": "$node", | |
| "hosts": [ | |
| "$node" | |
| ], | |
| "key": { | |
| "algo": "rsa", | |
| "size": 2048 | |
| }, | |
| "names": [ | |
| { | |
| "O": "Vagrant", | |
| "OU": "Infrastructure" | |
| } | |
| ] | |
| } | |
| EOF | |
| $CFSSL gencert \ | |
| -ca=ca.pem \ | |
| -ca-key=ca-key.pem \ | |
| -config=ca-config.json \ | |
| -profile=server \ | |
| "$node-csr.json" \ | |
| | $CFSSLJSON -bare "$node" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment