File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## Version 0.1.1
6+
57- Add support for passing in an instance-id instead of IP/DNS
68- Add note on support for Linux only
79- Add check for mandatory ` host ` parameter
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class Connection < Train::Plugins::Transport::BaseConnection
99 def initialize ( options )
1010 super ( options )
1111
12- check_optiońs
12+ check_options
1313
1414 @ssm = Aws ::SSM ::Client . new
1515 end
@@ -116,7 +116,7 @@ def terminal_state?(name)
116116
117117 # Execute a command via SSM
118118 def execute_command ( address , command )
119- instance_id = if address . start_with? 'i-'
119+ instance_id = if address . start_with? "i-"
120120 address
121121 else
122122 instance_id ( address )
Original file line number Diff line number Diff line change 11module TrainPlugins
22 module AWSSSM
3- VERSION = "0.1.0 " . freeze
3+ VERSION = "0.1.1 " . freeze
44 end
55end
You can’t perform that action at this time.
0 commit comments