a7028a9d64
* VAULT-9688 First attempt at Vault Agent Enos test * VAULT-9688 remove TODO, correct indentation * VAULT-9688 enos fmt * VAULT-9688 terraform fmt * VAULT-9688 small updates * VAULT-9688 add extra comment
14 lines
298 B
Bash
14 lines
298 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
fail() {
|
|
echo "$1" 1>&2
|
|
return 1
|
|
}
|
|
|
|
actual_output=$(cat ${vault_agent_template_destination})
|
|
if [[ "$actual_output" != "${vault_agent_expected_output}" ]]; then
|
|
fail "expected '${vault_agent_expected_output}' to be the Agent output, but got: '$actual_output'"
|
|
fi
|