-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathportefaix.sh
45 lines (37 loc) · 1.34 KB
/
portefaix.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
# SPDX-FileCopyrightText: Copyright (C) Nicolas Lamirault <nicolas.lamirault@gmail.com>
# SPDX-License-Identifier: Apache-2.0
OK_COLOR="\e[32m"
# KO_COLOR="\e[31m"
NO_COLOR="\e[39m"
reset_color="\\e[0m"
color_red="\\e[31m"
color_green="\\e[32m"
color_blue="\\e[36m"
function echo_fail { echo -e "${color_red}✖ $*${reset_color}"; }
function echo_success { echo -e "${color_green}✔ $*${reset_color}"; }
function echo_info { echo -e "${color_blue}$*${reset_color}"; }
echo -e "${OK_COLOR}🏗 Configure Portefaix${NO_COLOR}"
if [ $# -ne 1 ]; then
echo "Usage: $0 <cloud provider>"
else
CONFIG_HOME=${XDG_CONFIG_HOME:-${HOME}/.config}
PORTEFAIX_CONFIG_HOME=${CONFIG_HOME}/portefaix
CREDENTIALS=${PORTEFAIX_CONFIG_HOME}/portefaix.sh
if [ ! -f "${CREDENTIALS}" ]; then
echo_fail "File not found: ${CREDENTIALS}"
else
# shellcheck disable=SC1090
echo -e "${OK_COLOR}📝 Load environement variables${NO_COLOR}"
# shellcheck disable=SC1090
source "${CREDENTIALS}" "$1"
echo_info "Terraform variables"
export TF_VAR_portefaix_version="v0.43.0"
# shellcheck disable=SC2181
if [ $? -eq 0 ]; then
echo -e "${OK_COLOR}🎉 Congratulations ! Portefaix is configured${NO_COLOR}"
else
echo_fail "Failed"
fi
fi
fi