mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
65 lines
2.4 KiB
PowerShell
65 lines
2.4 KiB
PowerShell
param(
|
|
[String] [Parameter (Mandatory=$true)] $TemplatePath,
|
|
[String] [Parameter (Mandatory=$true)] $ClientId,
|
|
[String] [Parameter (Mandatory=$true)] $ClientSecret,
|
|
[String] [Parameter (Mandatory=$true)] $Location,
|
|
[String] [Parameter (Mandatory=$true)] $ImageName,
|
|
[String] [Parameter (Mandatory=$true)] $ImageResourceGroupName,
|
|
[String] [Parameter (Mandatory=$true)] $TempResourceGroupName,
|
|
[String] [Parameter (Mandatory=$true)] $SubscriptionId,
|
|
[String] [Parameter (Mandatory=$true)] $TenantId,
|
|
[String] [Parameter (Mandatory=$false)] $VirtualNetworkName,
|
|
[String] [Parameter (Mandatory=$false)] $VirtualNetworkRG,
|
|
[String] [Parameter (Mandatory=$false)] $VirtualNetworkSubnet
|
|
)
|
|
|
|
if (-not (Test-Path $TemplatePath))
|
|
{
|
|
Write-Error "'-TemplatePath' parameter is not valid. You have to specify correct Template Path"
|
|
exit 1
|
|
}
|
|
|
|
$ImageTemplateName = [io.path]::GetFileName($TemplatePath).Split(".")[0]
|
|
$InstallPassword = [System.GUID]::NewGuid().ToString().ToUpper()
|
|
|
|
$SensitiveData = @(
|
|
'OSType',
|
|
'StorageAccountLocation',
|
|
'OSDiskUri',
|
|
'OSDiskUriReadOnlySas',
|
|
'TemplateUri',
|
|
'TemplateUriReadOnlySas',
|
|
': ->'
|
|
)
|
|
|
|
Write-Host "Show Packer Version"
|
|
packer --version
|
|
|
|
Write-Host "Download packer plugins"
|
|
packer init $TemplatePath
|
|
|
|
Write-Host "Validate packer template"
|
|
packer validate -syntax-only $TemplatePath
|
|
|
|
Write-Host "Build $ImageTemplateName VM"
|
|
packer build -var "client_id=$ClientId" `
|
|
-var "client_secret=$ClientSecret" `
|
|
-var "install_password=$InstallPassword" `
|
|
-var "location=$Location" `
|
|
-var "managed_image_name=$ImageName" `
|
|
-var "managed_image_resource_group_name=$ImageResourceGroupName" `
|
|
-var "subscription_id=$SubscriptionId" `
|
|
-var "temp_resource_group_name=$TempResourceGroupName" `
|
|
-var "tenant_id=$TenantId" `
|
|
-var "virtual_network_name=$VirtualNetworkName" `
|
|
-var "virtual_network_resource_group_name=$VirtualNetworkRG" `
|
|
-var "virtual_network_subnet_name=$VirtualNetworkSubnet" `
|
|
-color=false `
|
|
$TemplatePath `
|
|
| Where-Object {
|
|
#Filter sensitive data from Packer logs
|
|
$currentString = $_
|
|
$sensitiveString = $SensitiveData | Where-Object { $currentString -match $_ }
|
|
$sensitiveString -eq $null
|
|
}
|