You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made a few minor changes to this, but I've got no idea how to submit them...namely:
added the ability to set the "name" tag of the snapshots using $snapshot_name in AWSConfig
changed the $serviceURL and $sesURL to be calculated based on a new var $AWS_Region (this was because the call to add a tag required the region to be known..and since the region is in the urls, why not just deal with it the one time)
I'd be happy to share the code, but I'll need a little guidance.
The text was updated successfully, but these errors were encountered:
#EC2 Regions
$serviceURL="https://ec2." + $AWS_Region + ".amazonaws.com"
#SES Regions (do not uncomment if using custom email server)
$sesURL="https://email." + $AWS_Region +".amazonaws.com"
AWSUtilities.ps1 (add this before the line "return $createSnapshotResult.Snapshot.SnapshotId" in "CreateSnapshotForInstance":
new-ec2tag -AccessKey $accessKeyID -SecretKey $secretAccessKey -Region $AWS_Region -Resources $createSnapshotResult.Snapshot.SnapshotId -Tags @{ Key="Name"; Value = $snapshot_name }
I made a few minor changes to this, but I've got no idea how to submit them...namely:
I'd be happy to share the code, but I'll need a little guidance.
The text was updated successfully, but these errors were encountered: