|
39 | 39 | import com.dtolabs.rundeck.plugins.ServiceNameConstants;
|
40 | 40 | import com.dtolabs.rundeck.plugins.util.DescriptionBuilder;
|
41 | 41 |
|
42 |
| -@Plugin(name = "aws-s3-source-chris", service = ServiceNameConstants.ResourceModelSource) |
| 42 | +@Plugin(name = "aws-s3-source", service = ServiceNameConstants.ResourceModelSource) |
43 | 43 | public class S3ResourceModelSource implements ResourceModelSourceFactory,Describable {
|
44 |
| - public static final String PROVIDER_NAME = "aws-s3-source-chris"; |
| 44 | + public static final String PROVIDER_NAME = "aws-s3-source"; |
45 | 45 |
|
46 | 46 | private Framework framework;
|
47 | 47 |
|
@@ -107,11 +107,11 @@ protected static Map<String, Object> getRenderOpt(String value, boolean secondar
|
107 | 107 |
|
108 | 108 | static Description DESC = DescriptionBuilder.builder()
|
109 | 109 | .name(PROVIDER_NAME)
|
110 |
| - .title("AWS S3 remote model source - TEST") |
| 110 | + .title("AWS S3 remote model source") |
111 | 111 | .description("Obtain nodes information from a file located in a S3 bucket")
|
112 |
| - .property(PropertyUtil.string(KEY, "AWS Access Key", "AWS Access Key. - TEST", false, |
| 112 | + .property(PropertyUtil.string(KEY, "AWS Access Key", "AWS Access Key.", false, |
113 | 113 | null,null,null, renderingOptionsAuthentication))
|
114 |
| - .property(PropertyUtil.string(SECRET, "AWS Secret Key", "AWS Secret Key. - TEST", false, |
| 114 | + .property(PropertyUtil.string(SECRET, "AWS Secret Key", "AWS Secret Key.", false, |
115 | 115 | null,null,null, renderingOptionsAuthentication))
|
116 | 116 | .property(PropertyUtil.string(CREDENTIALFILE, "AWS Credentials File - TEST", "Path to a AWSCredentials.properties file " +
|
117 | 117 | "containing 'accessKey' and 'secretKey'.", false,
|
|
0 commit comments