Run Terraform in container (optional).
terraform() {
set -x
podman run -it --rm --security-opt label=disable \
-v $(pwd):$(pwd) \
-w $(pwd) \
--env-file=credentials.env \
--net=host \
docker.io/hashicorp/terraform:latest "$@"
rc=$?; set +x; return $rc
}