-
Notifications
You must be signed in to change notification settings - Fork 0
/
Terrashell.ps1
77 lines (54 loc) · 2.7 KB
/
Terrashell.ps1
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#Alternative à Terraform
#####################################################################################################
# #
# Terrashell est compatible avec Powershell 7.2 et ultérieur. Powershell 5.1 n'est pas supporté #
# #
# Le projet est porté par le module PSToml, permettant de lire les fichiers de configuration #
# .toml (fichiers de descriptions comme le json, xml, etc...) grâce à Powershell. #
# Merci à jborean93. #
# #
#####################################################################################################
# Paramètres du script : Fichier .toml
Param(
[Parameter(Mandatory=$false)]
[bool] $Init,
[Parameter(Mandatory=$false)]
[bool] $Apply,
[Parameter(Mandatory=$true)]
[string] $File
)
# Récupération du fichier toml
$tomlFile = get-content $File | ConvertFrom-Toml
# Initialisation de Terrashell
if ($Init && $File -notmatch $null){
# Vérifications du module PSToml
Clear-Host
$module_name = (Get-Module).Name
if ($module_name.Contains("PSToml")){
Write-Host -ForegroundColor Green "Le module est installé"}
else {
Write-Warning "Le module n'est pas installé"
Install-Module -Name PSToml -Force
}
#Création du dossier Provider
if (!( Test-Path .\Provider )){
New-Item -Path .\ -Name Provider -ItemType Directory -Force
}
else {
Remove-Item -Path .\Provider -Recurse:$true -Force
New-Item -Path .\ -Name Provider -ItemType Directory -Force
}
# Téléchargement du provider
# Pour le moment, les providers seront à télécharger depuis github au format .zip (code > local > Download ZIP)
# A modifier ultérieurement
Invoke-WebRequest -Uri $tomlFile.Provider.provider.url -OutFile .\Provider\provider.zip
# Décompression du provider
Expand-Archive -Path .\Provider\provider.zip -DestinationPath .\Provider\ -Force
Remove-Item -Path .\Provider\provider.zip -Force
}
if ($Apply && $File -notmatch $null){
# Exécution du provider
# A faire : Rédiger le premier provider, ESX
$childPathProvider = (Get-ChildItem .\Provider\).Name
#Start-Process pwsh.exe -ArgumentList .\Provider\$childPathProvider\provider.ps1 -NoNewWindow
}