Private/Copy-OversizeTemplateToS3.ps1
function Copy-OversizeTemplateToS3 { <# .SYNOPSIS Copy filesystem templates that are too large to S3 for processing .DESCRIPTION Examine the user's arguments. If they point to a filesystem template that is larger than 51200 bytes, then upload it to S3 and adjust the argumnents that will be passed to New-CFNStack/Update-CFNStack .PARAMETER CredentialArguments Credential arguments passed to public function. .PARAMETER StackArguments Stack arguments passed to public function. #> param ( [hashtable]$CredentialArguments, [hashtable]$StackArguments, [string]$TemplateLocation ) # To support localstack testing, we have to fudge EndpointURL if present $s3Arguments = Update-EndpointValue -CredentialArguments $CredentialArguments -Service S3 $dateStamp = (Get-Date).ToUniversalTime().ToString('yyyyMMddHHmmssfff') if (-not $StackArguments.ContainsKey('TemplateBody')) { return } # Measure the body size in bytes if ((Get-Item -Path $TemplateLocation).Length -lt 51200) { return } # Oversize - need to upload $bucket = Get-CloudFormationBucket -CredentialArguments $CredentialArguments $key = $dateStamp + '_' + $StackArguments['StackName'] + '_' + [IO.Path]::GetFileName($TemplateLocation) $ub = New-Object UriBuilder -ArgumentList $bucket.BucketUrl $ub.Path += "/$key" Write-Host "Copying oversize template to $($ub.Uri.ToString())" Write-S3Object -BucketName $bucket.BucketName -Key $key -File (Resolve-Path $TemplateLocation).Path @s3Arguments # Now adjust the stack arguments to point to what we have just uploaded. $StackArguments.Remove('TemplateBody') $StackArguments.Add('TemplateURL', $ub.Uri.ToString()) } |