15 lines
296 B
Plaintext
15 lines
296 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
NAMECHEAP_API_KEY=$(pass namecheap.com/api_key)
|
||
|
LINODE_TOKEN=$(pass linode.com/token)
|
||
|
VULTR_API_KEY=$(pass vultr.com/api_key)
|
||
|
|
||
|
export HTTP_PROXY=caladan:8888
|
||
|
export HTTPS_PROXY=caladan:8888
|
||
|
|
||
|
export NAMECHEAP_API_KEY
|
||
|
export LINODE_TOKEN
|
||
|
export VULTR_API_KEY
|
||
|
|
||
|
terraform -chdir=./tf "$@"
|