Well, it’s time to try this again: Can a Tweet get another change to the AWSPowerShell module? Maybe you’ve read a recent post about an inconsistent parameter name between the same parameter, in two corresponding cmdlets. One tweet later and that was on its way to being fixed. You can read about that here: http://tommymaynard.com/twitter-reply-hashtag-aws-tweet-prompts-fix-to-awspowershell-module-2016.
I get that a tweet probably isn’t the preferred method of reporting problems, but it worked before, so why shouldn’t it again? That said, if there is a preferred method, then I’d be happy to use that, although it doesn’t make for as good a story.
So, here’s where we need a fix. The Stop-EC2Instance
cmdlet includes a Terminate switch parameter that indicates it will terminate the instance (think, remove) in addition to stopping it. It works; it really does terminate the instance. The problem here is that the help file indicates it will prompt the user for confirmation unless the Force parameter is also included. Nope; it doesn’t prompt. Not for me at least. It does terminate the instance, however, and it does so with no questions asked. It didn’t get me, but it might ruin someone’s day someday.
I didn’t try it, but it seems that there’s some built-in protection, although it’s not the default.
So you can see it yourself, here are two PowerShell commands I ran against two different EC2 instances. In the first command, I simply stop an EC2 instance. In the second, I added the Terminate switch. As I mentioned, it works, but there wasn’t a confirmation prompt. This was tested on AWS Tools for Windows PowerShell 3.1.66.0 and the newest version as of this writing, 3.1.71.0.
My suggestion to resolve this problem is to remove the Terminate switch from the Stop-EC2Instance
cmdlet, and make a Remove-EC2Instance
cmdlet. Maybe alias it with Terminate-EC2Instance
, as Terminate isn’t an approved verb. In fact, when I first wanted to remove an EC2 instance, I started by hunting for a Remove-EC2Instance
cmdlet. Tracking down the Terminate switch of Stop-EC2Instance
was the last place I would’ve looked. It seems to go against all PowerShell conventions. Does Stop-Transcript
have an option to remove a transcript as part of its usage? Does Stop-VM
in Hyper-V delete the VM? Does Stop-Cluster
include a way to delete the cluster? No. Terminating an instance shouldn’t be a part of stopping an instance unless Stop-EC2Instance
can be piped to Remove-EC2Instance
. Think about the safety that a separate cmdlet would provide (and it’s not like the AWS Tools team is shy about adding new cmdlets).
There are a couple of cmdlets out there that can be used to get the metadata from a compiled PowerShell cmdlet. We use it as a part of writing proxy functions. By using this, I was able to determine the reason why it doesn’t prompt. The problem, as best I can tell, is that Stop-EC2Instance
‘s ConfirmImpact CmdletBinding attribute is set to Medium
and the default value of the $ConfirmPreference
variable is High
.
This means that no matter how the Stop-EC2Instance
cmdlet is run, it’s never going to prompt for confirmation to terminate, unless someone has modified their $ConfirmPreference
value to Medium, and that’s not likely at all. Since a cmdlet, or advanced function, can’t have more than one ConfirmImpact argument, we need the terminate functionality removed from Stop-EC2Instance
and the development of a Remove-EC2Instance
cmdlet. For comparison, here’s the CmdletBinding attribute for the Remove-ADGroupMembership
Active Directory cmdlet. This one always prompts unless we include -Confirm:$false
.
I get this fix is much more involved than the last one I brought up (changing the name of a parameter), and would require more work. Additionally, it’s probably one of those things that have to be discussed among the AWS Tools team members and management. Before I close, I should make sure everyone knows that AWS is still new to me, and as such, there may be things that weren’t considered, or known, when this post was written.
Thanks for reading, and enjoy the upcoming weekend.