mirror of
https://dev.azure.com/effectory/Survey%20Software/_git/Cloud%20Engineering
synced 2026-02-27 18:52:18 +01:00
15 lines
482 B
PowerShell
15 lines
482 B
PowerShell
#Requires -Modules Az.Accounts,Az.Websites,Az.FrontDoor,Az.Storage,Az.Cdn,Az.Network,Az.TrafficManager,Az.ContainerInstance
|
|
|
|
<#
|
|
.SYNOPSIS
|
|
Find dangling DNS records
|
|
.DESCRIPTION
|
|
Compares DNS bindings with a previous state and checks the existence of DNS records for bindings that may have been deleted.
|
|
#>
|
|
|
|
'public', 'private' |
|
|
Resolve-Path -Path $PSScriptRoot -ChildPath { $_ } |
|
|
Get-ChildItem -Recurse -File -Filter *.ps1 |
|
|
ForEach-Object {
|
|
. $_.FullName
|
|
} |