Hcl2PS.psm1
$Script:Hcl2JsonVersion = '0.6.3' foreach ($directory in @('Public', 'Private')) { if (Test-Path -Path "$PSScriptRoot\$directory") { Get-ChildItem -Path "$PSScriptRoot\$directory\*.ps1" | ForEach-Object { . $_.FullName } } } $Script:executableName = if ($IsWindows -or ($PSVersionTable.PSVersion.Major -eq 5)) { "hcl2json_windows_amd64.exe" } elseif ($IsLinux) { if ($env:PROCESSOR_ARCHITECTURE -eq 'AMD64') { "hcl2json_linux_amd64" } if ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') { "hcl2json_linux_arm64" } else { "hcl2json_linux_amd64" } } elseif ($IsMacOS) { if ($env:PROCESSOR_ARCHITECTURE -eq 'AMD64') { "hcl2json_darwin_amd64" } if ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') { "hcl2json_darwin_arm64" } else { "hcl2json_darwin_amd64" } } else { Write-Error "Operating System and or Process Architecture Unkown or Unsupported" -ErrorAction Stop } $scriptPath = Split-Path -Path $MyInvocation.MyCommand.Path -Parent $binPath = Join-Path -Path $scriptPath -ChildPath 'bin' $jsonVersionPath = Join-Path -Path $binPath -ChildPath $Hcl2JsonVersion $Script:cliPath = Join-Path -Path $jsonVersionPath -ChildPath $executableName if ((test-path $cliPath) -ne $true) { Write-Error "Problem with the CLI Executable" -ErrorAction Stop } elseif ($IsLinux -or $IsMacOS) { & chmod +x $cliPath } |