@ossy/deployment-tools 0.0.8 → 0.0.9
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/dist/index.js +18 -0
- package/package.json +1 -1
- package/src/Caddyfile +8 -0
- package/src/caddy-client.js +18 -0
package/dist/index.js
CHANGED
|
@@ -28457,6 +28457,24 @@ class CaddyClient {
|
|
|
28457
28457
|
]
|
|
28458
28458
|
}
|
|
28459
28459
|
}
|
|
28460
|
+
},
|
|
28461
|
+
tls: {
|
|
28462
|
+
automation: {
|
|
28463
|
+
policies: {
|
|
28464
|
+
issuers: [
|
|
28465
|
+
{
|
|
28466
|
+
module: 'acme',
|
|
28467
|
+
challenges: {
|
|
28468
|
+
dns: {
|
|
28469
|
+
provider: {
|
|
28470
|
+
name: 'route53'
|
|
28471
|
+
}
|
|
28472
|
+
}
|
|
28473
|
+
}
|
|
28474
|
+
}
|
|
28475
|
+
]
|
|
28476
|
+
}
|
|
28477
|
+
}
|
|
28460
28478
|
}
|
|
28461
28479
|
}
|
|
28462
28480
|
})
|
package/package.json
CHANGED
package/src/Caddyfile
CHANGED
package/src/caddy-client.js
CHANGED
|
@@ -55,6 +55,24 @@ class CaddyClient {
|
|
|
55
55
|
]
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
+
},
|
|
59
|
+
tls: {
|
|
60
|
+
automation: {
|
|
61
|
+
policies: {
|
|
62
|
+
issuers: [
|
|
63
|
+
{
|
|
64
|
+
module: 'acme',
|
|
65
|
+
challenges: {
|
|
66
|
+
dns: {
|
|
67
|
+
provider: {
|
|
68
|
+
name: 'route53'
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
}
|
|
75
|
+
}
|
|
58
76
|
}
|
|
59
77
|
}
|
|
60
78
|
})
|