This file contains 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 | |
# Assumes the following: | |
# - The `curl` package is installed | |
# - Vault is listening on the standard port 8200 | |
# - Vault is using https with a valid certificate | |
# The hostname of the vault server that we're supposed to check. | |
hostname=$1 |