-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup_vpn.ps1
executable file
·48 lines (39 loc) · 1.87 KB
/
setup_vpn.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
#!/usr/bin/env pwsh
#requires -Version 7
. (Join-Path $PSScriptRoot functions.ps1)
# Get configuration
$terraformDirectory = (Join-Path (Split-Path -parent -Path $PSScriptRoot) "terraform")
Push-Location $terraformDirectory
$certPassword = (Get-TerraformOutput cert_password)
$clientCert = (Get-TerraformOutput client_cert_public_pem | Out-String)
$clientKey = (Get-TerraformOutput client_cert_private_pem | Out-String)
$dnsServer = (Get-TerraformOutput dns_server_address)
$gatewayId = (Get-TerraformOutput gateway_id)
$resourceGroup = (Get-TerraformOutput resource_group_name)
$workspace = $(terraform workspace show)
Pop-Location
# Install certificates
Install-Certificates -CertPassword $certPassword
# Download VPN package
AzLogin
if ($gatewayId) {
$tempPackagePath = (DownloadAndExtract-VPNProfile -GatewayID $gatewayId)
Write-Host "Profiles are stored in $tempPackagePath"
Update-AzureVPNProfile -PackagePath $tempPackagePath -ClientCert $clientCert -ClientKey $clientKey -DnsServer $dnsServer -ProfileName $resourceGroup -Install
Update-GenericVPNProfile -PackagePath $tempPackagePath -ClientCert $clientCert -ClientKey $clientKey -DnsServer $dnsServer
Update-OpenVPNProfile -PackagePath $tempPackagePath -ClientCert $clientCert -ClientKey $clientKey -DnsServer $dnsServer
$profileDirectory = (Join-Path (Split-Path $PSScriptRoot -Parent) "data" $workspace "vpn")
Copy-Item -Path (Join-Path $tempPackagePath *) -Destination $profileDirectory -Force -Recurse
Write-Host "`nVPN Profile have been saved in ${profileDirectory}"
if ($InformationPreference -ieq "Continue") {
Write-Information "DNS Configuration:"
if ($IsMacOS) {
scutil --dns
}
if ($IsWindows) {
Get-DnsClientNrptPolicy
}
}
} else {
Write-Warning "Gateway not found, have you run 'terraform apply' yet?"
}