@ts-cloud/core 0.12.11 → 0.12.12
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/drivers/types.d.ts +7 -0
- package/package.json +2 -2
package/dist/drivers/types.d.ts
CHANGED
|
@@ -36,6 +36,13 @@ export interface ComputeStackOutputs {
|
|
|
36
36
|
servicesPrivateIp?: string;
|
|
37
37
|
/** Fleet: public IP of the load balancer fronting the app servers. */
|
|
38
38
|
loadBalancerIp?: string;
|
|
39
|
+
/**
|
|
40
|
+
* On-box path to the LAN certificate authority's certificate, for a host
|
|
41
|
+
* whose gateway signs its own TLS (`ssh.lan.tls: 'local-ca'`). Reported so a
|
|
42
|
+
* caller can fetch the file and trust it on a laptop or a phone; absent for
|
|
43
|
+
* every publicly-resolvable deploy, which uses Let's Encrypt instead.
|
|
44
|
+
*/
|
|
45
|
+
lanCaCertPath?: string;
|
|
39
46
|
}
|
|
40
47
|
export interface RemoteDeployInstanceResult {
|
|
41
48
|
instanceId: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-cloud/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.12",
|
|
5
5
|
"description": "Core CloudFormation generation library for ts-cloud",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ts-cloud/aws-types": "0.12.
|
|
34
|
+
"@ts-cloud/aws-types": "0.12.12"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"typescript": "^7.0.2"
|