@@ -352,7 +352,7 @@ public static String[] getValues() {
352352 .title ("SSH Key File path" )
353353 .description ("File Path to the SSH Key to use" )
354354 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
355- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
355+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"Authentication " )
356356 .build ();
357357
358358
@@ -366,50 +366,50 @@ public static String[] getValues() {
366366 .renderingOption (StringRenderingConstants .STORAGE_PATH_ROOT_KEY , "keys" )
367367 .renderingOption (StringRenderingConstants .STORAGE_FILE_META_FILTER_KEY , "Rundeck-key-type=private" )
368368 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
369- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
369+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"Authentication " )
370370 .build ();
371371
372372 static final Property SSH_PASSWORD_STORAGE_PROP = PropertyBuilder .builder ()
373373 .string (ANSIBLE_SSH_PASSWORD_STORAGE_PATH )
374374 .required (false )
375- .title ("SSH Password Storage Path" )
376- .description ("Path to the ssh Password to use within Rundeck Storage." )
375+ .title ("Password Storage Path" )
376+ .description ("Path to the Password to use within Rundeck Storage." )
377377 .renderingOption (StringRenderingConstants .SELECTION_ACCESSOR_KEY ,
378378 StringRenderingConstants .SelectionAccessor .STORAGE_PATH )
379379 .renderingOption (StringRenderingConstants .STORAGE_PATH_ROOT_KEY , "keys" )
380380 .renderingOption (StringRenderingConstants .STORAGE_FILE_META_FILTER_KEY , "Rundeck-data-type=password" )
381381 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
382- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
382+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"Authentication " )
383383 .build ();
384384
385385 static final Property SSH_PASSWORD_PROP = PropertyBuilder .builder ()
386386 .string (ANSIBLE_SSH_PASSWORD )
387387 .required (false )
388- .title ("SSH Password" )
389- .description ("Ansible SSH password ." )
388+ .title ("User Password" )
389+ .description ("Ansible User Password ." )
390390 .renderingOption (StringRenderingConstants .DISPLAY_TYPE_KEY ,
391391 StringRenderingConstants .DisplayType .PASSWORD )
392392 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
393- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
393+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"Authentication " )
394394 .build ();
395395
396396 static final Property SSH_AUTH_TYPE_PROP = PropertyBuilder .builder ()
397397 .select (ANSIBLE_SSH_AUTH_TYPE )
398398 .required (false )
399- .title ("SSH Authentication" )
400- .description ("Type of SSH Authentication to use." )
399+ .title ("Authentication Type " )
400+ .description ("Type of Authentication to use." )
401401 .values (Arrays .asList (AuthenticationType .getValues ()))
402402 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
403- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
403+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"Authentication " )
404404 .build ();
405405
406406 static final Property SSH_USER_PROP = PropertyBuilder .builder ()
407407 .string (ANSIBLE_SSH_USER )
408408 .required (false )
409- .title ("SSH User" )
410- .description ("SSH User to authenticate as (default=rundeck)." )
409+ .title ("User" )
410+ .description ("User to authenticate as (default=rundeck)." )
411411 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
412- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
412+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"Authentication " )
413413 .build ();
414414
415415 static final Property SSH_TIMEOUT_PROP = PropertyBuilder .builder ()
@@ -418,7 +418,7 @@ public static String[] getValues() {
418418 .title ("SSH Timeout" )
419419 .description ("SSH timeout, override the SSH timeout in seconds (default=10)." )
420420 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
421- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
421+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Extra Configuration " )
422422 .build ();
423423
424424 static final Property SSH_USE_AGENT = PropertyBuilder .builder ()
@@ -427,7 +427,7 @@ public static String[] getValues() {
427427 .title ("Use ssh-agent." )
428428 .description ("Use ssh-agent to connect with a private key plus a passphrase." )
429429 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
430- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
430+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Extra Configuration " )
431431 .build ();
432432
433433 static final Property SSH_PASSPHRASE = PropertyBuilder .builder ()
@@ -440,7 +440,7 @@ public static String[] getValues() {
440440 .renderingOption (StringRenderingConstants .STORAGE_PATH_ROOT_KEY , "keys" )
441441 .renderingOption (StringRenderingConstants .STORAGE_FILE_META_FILTER_KEY , "Rundeck-data-type=password" )
442442 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
443- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
443+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Extra Configuration " )
444444 .build ();
445445
446446 static final Property SSH_PASSPHRASE_OPTION = PropertyBuilder .builder ()
@@ -450,7 +450,7 @@ public static String[] getValues() {
450450 .description ("SSH Passphrase from secure option on a job, it just works if the ssh-agent is used." )
451451 .defaultValue (DEFAULT_ANSIBLE_SSH_PASSPHRASE_OPTION )
452452 .renderingOption (StringRenderingConstants .GROUPING ,"SECONDARY" )
453- .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Connection " )
453+ .renderingOption (StringRenderingConstants .GROUP_NAME ,"SSH Extra Configuration " )
454454 .build ();
455455
456456
0 commit comments