@itentialopensource/adapter-amazon_route53 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/adapter.js +1572 -2004
- package/package.json +1 -1
- package/propertiesSchema.json +24 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +4 -4
- package/sampleProperties.json +4 -1
package/package.json
CHANGED
package/propertiesSchema.json
CHANGED
|
@@ -271,6 +271,30 @@
|
|
|
271
271
|
"type": "string",
|
|
272
272
|
"description": "The grant type for OAuth requests - can also provide in schema",
|
|
273
273
|
"default": ""
|
|
274
|
+
},
|
|
275
|
+
"aws_access_key": {
|
|
276
|
+
"type": "string",
|
|
277
|
+
"description": "AWS access key for authentication",
|
|
278
|
+
"default": "",
|
|
279
|
+
"examples": [
|
|
280
|
+
"accesskey"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
"aws_secret_key": {
|
|
284
|
+
"type": "string",
|
|
285
|
+
"description": "AWS secret key for authentication",
|
|
286
|
+
"default": "",
|
|
287
|
+
"examples": [
|
|
288
|
+
"secretkey"
|
|
289
|
+
]
|
|
290
|
+
},
|
|
291
|
+
"aws_session_token": {
|
|
292
|
+
"type": "string",
|
|
293
|
+
"description": "AWS session token for all calls - not all systems require this",
|
|
294
|
+
"default": "",
|
|
295
|
+
"examples": [
|
|
296
|
+
"sessionToken"
|
|
297
|
+
]
|
|
274
298
|
}
|
|
275
299
|
},
|
|
276
300
|
"required": [
|
|
Binary file
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
3
|
-
"configLines":
|
|
2
|
+
"version": "0.2.0",
|
|
3
|
+
"configLines": 9154,
|
|
4
4
|
"scriptLines": 1707,
|
|
5
|
-
"codeLines":
|
|
5
|
+
"codeLines": 10204,
|
|
6
6
|
"testLines": 6469,
|
|
7
7
|
"testCases": 324,
|
|
8
|
-
"totalCodeLines":
|
|
8
|
+
"totalCodeLines": 18380,
|
|
9
9
|
"wfTasks": 145
|
|
10
10
|
}
|
package/sampleProperties.json
CHANGED
|
@@ -26,7 +26,10 @@
|
|
|
26
26
|
"auth_logging": false,
|
|
27
27
|
"client_id": "",
|
|
28
28
|
"client_secret": "",
|
|
29
|
-
"grant_type": ""
|
|
29
|
+
"grant_type": "",
|
|
30
|
+
"aws_access_key": "aws_access_key",
|
|
31
|
+
"aws_secret_key": "aws_secret_key",
|
|
32
|
+
"aws_session_token": "aws_session_token"
|
|
30
33
|
},
|
|
31
34
|
"healthcheck": {
|
|
32
35
|
"type": "none",
|