$Accounts = irm -Uri ''
$CommunicationBody = @"
Hi, Ross Wickman. We would like the following limit increase for the AWS Account:
Limit increase request 1
Service: VPC
Region: US West (Oregon)
Limit name: Routes per Route Table
New limit value: 100
Description: Use case: Increase Route Table Route Limit of non-propagated routes from 50 to 100 so that we can put all our static routes in place."
"@
foreach ($account in $Accounts.AWSAccount ){
Set-Profile -Account $account -Role admins
}
foreach($profile in Get-Profiles){
if($profile -ne "master"){
#New-ASACase -ProfileName $profile -ServiceCode "amazon-virtual-private-cloud" -CategoryCode "general-guidance" -SeverityCode "critical" -IssueType "technical" -Subject "Limit Increase: VPC" -CommunicationBody $CommunicationBody
write-host "$profile ticket submitted"
} else {
write-host "$profile already submitted"
}
}