@itentialopensource/adapter-amazon_route53 0.4.4 → 0.4.5

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 CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 0.4.5 [09-12-2024]
3
+
4
+ * add properties for sts
5
+
6
+ See merge request itentialopensource/adapters/adapter-amazon_route53!21
7
+
8
+ ---
9
+
2
10
  ## 0.4.4 [08-22-2024]
3
11
 
4
12
  * update dependencies and metadata
package/TAB2.md CHANGED
@@ -141,7 +141,13 @@ Sample Properties can be used to help you configure the adapter in the Itential
141
141
  "aws_access_key": "aws_access_key",
142
142
  "aws_secret_key": "aws_secret_key",
143
143
  "aws_session_token": "aws_session_token",
144
- "aws_iam_role": ""
144
+ "aws_iam_role": "",
145
+ "aws_sts": {
146
+ "sslEnable": true,
147
+ "endpoint": "",
148
+ "proxy": "",
149
+ "proxyagent": ""
150
+ }
145
151
  },
146
152
  "healthcheck": {
147
153
  "type": "startup",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-amazon_route53",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "This adapter integrates with system described as: Amazon Route53.",
5
5
  "main": "adapter.js",
6
6
  "systemName": "Amazon AWS Route53",
@@ -55,7 +55,7 @@
55
55
  "author": "Itential",
56
56
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-amazon_route53#readme",
57
57
  "dependencies": {
58
- "@itentialopensource/adapter-utils": "^5.7.0",
58
+ "@itentialopensource/adapter-utils": "^5.7.2",
59
59
  "acorn": "^8.12.1",
60
60
  "ajv": "^8.17.1",
61
61
  "axios": "^1.7.4",
@@ -381,6 +381,43 @@
381
381
  "examples": [
382
382
  "roleOnAllCalls"
383
383
  ]
384
+ },
385
+ "aws_sts": {
386
+ "type": "object",
387
+ "properties": {
388
+ "sslEnable": {
389
+ "type": "boolean",
390
+ "description": "This can disable the ssl for the sts requests",
391
+ "default": true
392
+ },
393
+ "endpoint": {
394
+ "type": "string",
395
+ "description": "change the sts endpoint used for assume role",
396
+ "default": "",
397
+ "enum": [
398
+ "sts.amazonaws.com",
399
+ "sts.us-east-2.amazonaws.com",
400
+ ""
401
+ ]
402
+ },
403
+ "proxy": {
404
+ "type": "string",
405
+ "description": "add a proxy to calls used for assume role",
406
+ "default": "",
407
+ "examples": [
408
+ "https://1.1.1.1"
409
+ ]
410
+ },
411
+ "proxyagent": {
412
+ "type": "string",
413
+ "description": "define a proxy agent for calls to assume role",
414
+ "default": "",
415
+ "examples": [
416
+ "https",
417
+ "http"
418
+ ]
419
+ }
420
+ }
384
421
  }
385
422
  },
386
423
  "required": [
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "0.4.3",
3
- "configLines": 9898,
2
+ "version": "0.4.4",
3
+ "configLines": 9935,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 9292,
6
6
  "testLines": 6920,
@@ -46,7 +46,13 @@
46
46
  "aws_access_key": "aws_access_key",
47
47
  "aws_secret_key": "aws_secret_key",
48
48
  "aws_session_token": "aws_session_token",
49
- "aws_iam_role": ""
49
+ "aws_iam_role": "",
50
+ "aws_sts": {
51
+ "sslEnable": true,
52
+ "endpoint": "",
53
+ "proxy": "",
54
+ "proxyagent": ""
55
+ }
50
56
  },
51
57
  "healthcheck": {
52
58
  "type": "startup",
@@ -1,9 +0,0 @@
1
- {
2
- "ComplianceEntries": [
3
- {
4
- "name": "Compliance Summary",
5
- "numInvalidProjects": 0,
6
- "numValidProjects": 0
7
- }
8
- ]
9
- }
@@ -1,5 +0,0 @@
1
- ---------------------------------------------------------------------------------------------
2
- **** Project Compliance Summary ****
3
- 0 project(s) are not valid
4
- 0 project(s) are valid
5
- ---------------------------------------------------------------------------------------------