ps/Modules/Cole.PowerShell.Developer/Public/Get-AWSRegions.ps1

8 lines
127 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-AWSRegions {
return @(
'us-east-1'
'us-east-2'
'us-west-1'
'us-west-2'
)
}