pantograph/lib/pantograph/actions/ssh.rb in pantograph-0.1.8 vs pantograph/lib/pantograph/actions/ssh.rb in pantograph-0.1.10

- old
+ new

@@ -87,29 +87,29 @@ [ PantographCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "FL_SSH_USERNAME", description: "Username", - is_string: true), + type: String), PantographCore::ConfigItem.new(key: :password, short_option: "-p", env_name: "FL_SSH_PASSWORD", sensitive: true, description: "Password", optional: true, - is_string: true), + type: String), PantographCore::ConfigItem.new(key: :host, short_option: "-H", env_name: "FL_SSH_HOST", description: "Hostname", - is_string: true), + type: String), PantographCore::ConfigItem.new(key: :port, short_option: "-P", env_name: "FL_SSH_PORT", description: "Port", optional: true, default_value: "22", - is_string: true), + type: String), PantographCore::ConfigItem.new(key: :commands, short_option: "-C", env_name: "FL_SSH_COMMANDS", description: "Commands", optional: true,