You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
630 B
18 lines
630 B
# 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
|
|
|