Skip to content

Commit

Permalink
minor change in field
Browse files Browse the repository at this point in the history
  • Loading branch information
v-amolpatil committed Jan 24, 2025
1 parent a1b4f4a commit 5f37ff9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -804,16 +804,16 @@ function ProcessPropertyPlaceholders($armResource, $templateContentConnections,
{
if ($isRequired -and $isInnerObject)
{
Write-Host "Error: Attribute '$($propertyName)' missing from '$($innerObjectName)' Object from $($kindType) $($(fileType)) 'properties' section." -BackgroundColor Red
Write-Host "Error: Attribute '$($propertyName)' missing from '$($innerObjectName)' Object from $($kindType) $($fileType) 'properties' section." -BackgroundColor Red
exit 1;
}
elseif ($isRequired -and $isInnerObject -eq $false)
{
Write-Host "Error: Attribute '$($propertyName)' missing from '$($kindType)' $($(fileType)) 'properties' section." -BackgroundColor Red
Write-Host "Error: Attribute '$($propertyName)' missing from '$($kindType)' $($fileType) 'properties' section." -BackgroundColor Red
exit 1;
}
else {
Write-Host "Warning: Attribute '$($propertyName)' missing from $($(fileType))."
Write-Host "Warning: Attribute '$($propertyName)' missing from $($fileType)."
}
}
}
Expand Down

0 comments on commit 5f37ff9

Please sign in to comment.