Skip to content

Commit 8969534

Browse files
benbpazure-sdk
authored andcommitted
Add option to create self contained test resources post script
1 parent 8ba7239 commit 8969534

File tree

2 files changed

+63
-2
lines changed

2 files changed

+63
-2
lines changed

eng/common/TestResources/New-TestResources.ps1

+39-2
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ param (
9393
})]
9494
[array] $AllowIpRanges = @(),
9595

96+
# Instead of running the post script, create a wrapped file to run it with parameters
97+
# so that CI can run it in a subsequent step with a refreshed azure login
98+
[Parameter()]
99+
[string] $SelfContainedPostScript,
100+
96101
[Parameter()]
97102
[switch] $CI = ($null -ne $env:SYSTEM_TEAMPROJECTID),
98103

@@ -625,9 +630,41 @@ try {
625630
SetResourceNetworkAccessRules -ResourceGroupName $ResourceGroupName -AllowIpRanges $AllowIpRanges -CI:$CI
626631

627632
$postDeploymentScript = $templateFile.originalFilePath | Split-Path | Join-Path -ChildPath "$ResourceType-resources-post.ps1"
633+
634+
if ($SelfContainedPostScript -and !(Test-Path $postDeploymentScript)) {
635+
throw "-SelfContainedPostScript is not supported if there is no `test-resources-post.ps1` script in the deployment template directory"
636+
}
637+
628638
if (Test-Path $postDeploymentScript) {
629-
Log "Invoking post-deployment script '$postDeploymentScript'"
630-
&$postDeploymentScript -ResourceGroupName $ResourceGroupName -DeploymentOutputs $deploymentOutputs @PSBoundParameters
639+
if ($SelfContainedPostScript) {
640+
Log "Creating invokable post-deployment script '$SelfContainedPostScript' from '$postDeploymentScript'"
641+
642+
$deserialized = @{}
643+
foreach ($parameter in $PSBoundParameters.GetEnumerator()) {
644+
if ($parameter.Value -is [System.Management.Automation.SwitchParameter]) {
645+
$deserialized[$parameter.Key] = $parameter.Value.ToBool()
646+
} else {
647+
$deserialized[$parameter.Key] = $parameter.Value
648+
}
649+
}
650+
$deserialized['ResourceGroupName'] = $ResourceGroupName
651+
$deserialized['DeploymentOutputs'] = $deploymentOutputs
652+
$serialized = $deserialized | ConvertTo-Json
653+
654+
$outScript = @"
655+
`$parameters = `@'
656+
$serialized
657+
'`@ | ConvertFrom-Json -AsHashtable
658+
# Set global variables that aren't always passed as parameters
659+
`$ResourceGroupName = `$parameters.ResourceGroupName
660+
`$DeploymentOutputs = `$parameters.DeploymentOutputs
661+
$postDeploymentScript `@parameters
662+
"@
663+
$outScript | Out-File $SelfContainedPostScript
664+
} else {
665+
Log "Invoking post-deployment script '$postDeploymentScript'"
666+
&$postDeploymentScript -ResourceGroupName $ResourceGroupName -DeploymentOutputs $deploymentOutputs @PSBoundParameters
667+
}
631668
}
632669

633670
if ($templateFile.jsonFilePath.EndsWith('.compiled.json')) {

eng/common/TestResources/deploy-test-resources.yml

+24
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ parameters:
99
ResourceType: test
1010
UseFederatedAuth: true
1111
PersistOidcToken: false
12+
SelfContainedPostScript: self-contained-test-resources-post.ps1
1213

1314
# SubscriptionConfiguration will be splatted into the parameters of the test
1415
# resources script. It should be JSON in the form:
@@ -89,6 +90,8 @@ steps:
8990
# Write the new SubscriptionConfiguration to be used by the remove test resources
9091
Write-Host "##vso[task.setvariable variable=SubscriptionConfiguration;]$($subscriptionConfiguration | ConvertTo-Json -Compress)"
9192
93+
$postScriptPath = $${{ parameters.PersistOidcToken }} ? '$(Agent.TempDirectory)/${{ parameters.SelfContainedPostScript }}' : $null
94+
9295
# The subscriptionConfiguration may have ArmTemplateParameters defined, so
9396
# pass those in via the ArmTemplateParameters flag, and handle any
9497
# additional parameters from the pipelines via AdditionalParameters
@@ -100,10 +103,31 @@ steps:
100103
@subscriptionConfiguration `
101104
-AdditionalParameters ${{ parameters.ArmTemplateParameters }} `
102105
-AllowIpRanges ('$(azsdk-corp-net-ip-ranges)' -split ',') `
106+
-SelfContainedPostScript $postScriptPath `
103107
-CI `
104108
-Force `
105109
-Verbose | Out-Null
106110
111+
- ${{ if eq(parameters.PersistOidcToken, true) }}:
112+
# ARM deployments that take longer than 10-15 minutes (e.g. HSM) can
113+
# cause post scripts to fail with expired credentials.
114+
# Add a new task with a refreshed token as a workaround to this issue.
115+
- task: AzureCLI@2
116+
displayName: Test Resources Post with refreshed login
117+
env:
118+
${{ insert }}: ${{ parameters.EnvVars }}
119+
inputs:
120+
azureSubscription: ${{ parameters.ServiceConnection }}
121+
addSpnToEnvironment: true
122+
scriptLocation: inlineScript
123+
scriptType: pscore
124+
inlineScript: |
125+
$env:ARM_OIDC_TOKEN = $env:idToken
126+
$scriptPath = '$(Agent.TempDirectory)/${{ parameters.SelfContainedPostScript }}'
127+
Write-Host "Executing self contained test resources post script '$scriptPath'"
128+
& $scriptPath
129+
Remove-Item $scriptPath # avoid any possible complications when we run multiple deploy templates
130+
107131
- ${{ else }}:
108132
- pwsh: |
109133
eng/common/scripts/Import-AzModules.ps1

0 commit comments

Comments
 (0)