19 lines
630 B
Plaintext
19 lines
630 B
Plaintext
# Your username that you use for accounts on our machines.
|
|
export REMOTE_USER=
|
|
export ANSIBLE_USER=$REMOTE_USER
|
|
|
|
# The path to our pass credentials store
|
|
export PASSWORD_STORE_DIR=
|
|
|
|
# The Hetzner Cloud API token for managing our instances
|
|
# Uncomment the prod/test line below depending on what you're doing
|
|
# export HCLOUD_TOKEN=$(pass show logins/hetzner/prod/api_key)
|
|
# export HCLOUD_TOKEN=$(pass show logins/hetzner/test/api_key)
|
|
export HCLOUD_TOKEN=$(pass show logins/hetzner/cicd/api_key)
|
|
|
|
# For molecule role testing
|
|
export INSTANCE_UUID=$RANDOM
|
|
|
|
# So molecule will show credentials in the logs
|
|
export MOLECULE_NO_LOG=False
|