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
just some words that don't mean nothing, bleh, blah, meh, whatevs.. |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC92iZJD2k3nMiQ0tijwaYJc6iVox5PgBfaZyB/IrXJZOmQg1Y1RuUa+VQ3YOiC10EsJahqQTwjUXLf5rZAtLc2HpZz1uOrvIn/k1S1YLEGcGndoQAO0qqgGFtVsTazdCUGf2JOCDuro+Ml/T/9AvcxxmLUaFhmAANa2nX6WUpBqB8yr5w0jd6ztxBPhxBKJnoPbZEUHq7sbJsFtBreGDwPZ8Ub4nyjAgIYwtoalK/kiIfCWgEHhEEMvBgk2135ooiqxhIiASbTk34fj5wquFY7/Yk+FJabTPEyE67C+PTDZrweIRduteovrEPlQYLkGULdFdPdbfoMApUzlBN5nNMv dev@dev | |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvVxeJ/kRfMQ38NGVAywT30TkCSHkSl474vKR2S2C4SJiyJk0nWaCD0XrqwbpfXlypHMtgDhJVhHxqDbr5SBaOu545V8hrtsKaal9xB+wHlg0Ft8bBUx+SHXH8U5zhCkm0a7//MKELaGx7w+eoQaQQ5kaIyjGgi57HUbDR4hGE33E6YBQ4fggFxNazKom6VKB7KjR1meMDL6v45gOeZf6FYsibmdJfex6q/dUbBTfKJac8b46LKOKnXJHTwMZ2s7vWw5myOMfqjQeLoaEBUkxOzadCO209lu+22LX1fn6J6cwl1VdUXVEBdxVpEHAfU5TJKMPNkZ7wkyDTQvBNdr03 dev@dev |
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
import hvac | |
def vault_conf(vault_address, vault_token, path="/cubbyhole/app"): | |
client = hvac.Client(url=vault_address, token=vault_token) | |
return client.read(path)['data'] | |
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
// Copyright 2011 The Go Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
// Modify by linuz.ly | |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"code.google.com/p/go.crypto/ssh" |