14 lines
277 B
Bash
14 lines
277 B
Bash
#!/bin/sh
|
|
|
|
# env.sh
|
|
|
|
# Change the contents of this output to get the environment variables
|
|
# of interest. The output must be valid JSON, with strings for both
|
|
# keys and values.
|
|
cat <<EOF
|
|
{
|
|
"PM_API_TOKEN_ID": "tf@pve!terraform",
|
|
"PM_API_TOKEN_SECRET": "foo-bar-1234"
|
|
}
|
|
EOF
|