14 lines
277 B
Plaintext
14 lines
277 B
Plaintext
|
#!/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
|