modules/Utilities/private/Get-FormattedDateTimeUTC.ps1

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

function Get-FormattedDateTimeUTC {
    return ([DateTime]::UtcNow.ToString('yyyyMMdd-HHmmss'))
}