11 lines
376 B
Bash
11 lines
376 B
Bash
#!/bin/env sh
|
|
export TF_IN_AUTOMATION=1
|
|
TF_VAR_ip="$(curl -s 'https://api.ipify.org')"
|
|
export TF_VAR_ip
|
|
export ACME_SERVER_URL="https://acme-v02.api.letsencrypt.org/directory"
|
|
tty_row="70"
|
|
tty_col="300"
|
|
set_terminal_size "$tty_row" "$tty_col"
|
|
# shellcheck disable=SC2140
|
|
export PS1=""\$\(blue\)""\$\(get_repo_owner\)"/"\$\(ce\)""\$\(orange\)"\W "\$\(ce\)""\$\(git_status\)" "
|