Seprate the creds from the script

This commit is contained in:
Alarig Le Lay 2019-01-21 11:02:27 +01:00
parent 9c7b47ac2e
commit 4c7d508635
2 changed files with 11 additions and 3 deletions

11
creationRoutesVM.sh Normal file → Executable file
View File

@ -10,9 +10,14 @@
# - LOG_PLACE
# - CHEMIN_CACHE
# Informations d'indentification IPAM
USER_IPAM=""
PASSWORD_IPAM=""
# IPAM creds
if [ -f creds ]; then
source creds
else
printf 'Cant source "creds": file not found\n'
fi
exit 0
# ID subnets IPAM V4 et V6 contenants les VMs
ID_RANGES_V4=( "74" "181" )

3
creds.example Normal file
View File

@ -0,0 +1,3 @@
# User and password to request a token on phpIPAM API
USER_IPAM='user'
PASSWORD_IPAM='passwd'