powershell AWS-VPC-审计
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell AWS-VPC-审计相关的知识,希望对你有一定的参考价值。
$Collection = @()
foreach($Role in Get-ChsAdfsProfiles){
$VGWs = Get-Ec2VpnGateway -Region 'us-west-2' -ProfileName $Role
foreach ($VGW in $VGWs){
$theVgw = $VGW.VpnGatewayId
$Vpcs = ($VGW | Select -ExpandProperty VpcAttachments).VpcId
foreach($Vpc in $Vpcs){
$Record = New-Object -TypeName psobject
$Record | Add-Member -MemberType NoteProperty -Name "Account" -Value $Role
$Record | Add-Member -MemberType NoteProperty -Name "VgwId" -Value $theVgw
$Record | Add-Member -MemberType NoteProperty -Name "VpcId" -Value $Vpc
$Collection += $Record
}
}
}
以上是关于powershell AWS-VPC-审计的主要内容,如果未能解决你的问题,请参考以下文章
Office365 PowerShell打开邮箱审计功能
Office365 PowerShell打开邮箱审计功能
使用 powershell 访问远程计算机时出现审计错误
关于AWS-VPC中的公有子网与私有子网-Public and private subnets
来自powershell的SQL插入失败并带引号
[ 代码审计篇 ] Java web 代码审计 详解