I have the following Powershel script that reads a text file. The value that is read is a value I want to pass as a variable to another step in the Azure Devops yml file
$data = Get-Content .\cluster_txt.txt
Write-Output $data
How can I access the value in $data in another task