Skip to content

Commit cc2f073

Browse files
author
Thomas Heinen
committed
v0.1.1
1 parent 75f89a6 commit cc2f073

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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

lib/train-awsssm/connection.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

lib/train-awsssm/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module TrainPlugins
22
module AWSSSM
3-
VERSION = "0.1.0".freeze
3+
VERSION = "0.1.1".freeze
44
end
55
end

0 commit comments

Comments
 (0)