@pulumiverse/talos 0.1.7 → 0.2.0
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/client/{configuration.d.ts → getConfiguration.d.ts} +13 -13
- package/client/{configuration.js → getConfiguration.js} +10 -10
- package/client/getConfiguration.js.map +1 -0
- package/client/index.d.ts +3 -3
- package/client/index.js +4 -4
- package/client/index.js.map +1 -1
- package/cluster/getHealth.d.ts +81 -0
- package/cluster/getHealth.js +29 -0
- package/cluster/getHealth.js.map +1 -0
- package/cluster/getKubeconfig.d.ts +95 -0
- package/cluster/{kubeconfig.js → getKubeconfig.js} +8 -8
- package/cluster/getKubeconfig.js.map +1 -0
- package/cluster/index.d.ts +6 -3
- package/cluster/index.js +7 -4
- package/cluster/index.js.map +1 -1
- package/machine/{configuration.d.ts → getConfiguration.d.ts} +13 -13
- package/machine/{configuration.js → getConfiguration.js} +10 -10
- package/machine/getConfiguration.js.map +1 -0
- package/machine/{disks.d.ts → getDisks.d.ts} +25 -25
- package/machine/{disks.js → getDisks.js} +12 -12
- package/machine/getDisks.js.map +1 -0
- package/machine/index.d.ts +6 -6
- package/machine/index.js +7 -7
- package/machine/index.js.map +1 -1
- package/machine/secrets.d.ts +2 -2
- package/package.json +1 -1
- package/types/input.d.ts +157 -304
- package/types/output.d.ts +93 -223
- package/utilities.d.ts +4 -0
- package/utilities.js +33 -1
- package/utilities.js.map +1 -1
- package/client/configuration.js.map +0 -1
- package/cluster/kubeconfig.d.ts +0 -89
- package/cluster/kubeconfig.js.map +0 -1
- package/machine/configuration.js.map +0 -1
- package/machine/disks.js.map +0 -1
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Generate a machine configuration for a node type
|
|
6
6
|
*
|
|
7
|
-
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.
|
|
7
|
+
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.getDisks` data source maybe just used to query disk information that could be used elsewhere. It's recommended to use `machine.install.diskSelector` in Talos machine configuration.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -14,7 +14,7 @@ import * as outputs from "../types/output";
|
|
|
14
14
|
* import * as talos from "@pulumiverse/talos";
|
|
15
15
|
*
|
|
16
16
|
* const thisSecrets = new talos.machine.Secrets("thisSecrets", {});
|
|
17
|
-
* const thisDisks = talos.machine.
|
|
17
|
+
* const thisDisks = talos.machine.getDisksOutput({
|
|
18
18
|
* clientConfiguration: thisSecrets.clientConfiguration,
|
|
19
19
|
* node: "10.5.0.2",
|
|
20
20
|
* filters: {
|
|
@@ -25,49 +25,49 @@ import * as outputs from "../types/output";
|
|
|
25
25
|
* export const nvmeDisks = thisDisks.apply(thisDisks => thisDisks.disks.map(__item => __item.name));
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
|
-
export declare function
|
|
28
|
+
export declare function getDisks(args: GetDisksArgs, opts?: pulumi.InvokeOptions): Promise<GetDisksResult>;
|
|
29
29
|
/**
|
|
30
|
-
* A collection of arguments for invoking
|
|
30
|
+
* A collection of arguments for invoking getDisks.
|
|
31
31
|
*/
|
|
32
|
-
export interface
|
|
32
|
+
export interface GetDisksArgs {
|
|
33
33
|
/**
|
|
34
34
|
* The client configuration data
|
|
35
35
|
*/
|
|
36
|
-
clientConfiguration: inputs.machine.
|
|
36
|
+
clientConfiguration: inputs.machine.GetDisksClientConfiguration;
|
|
37
37
|
/**
|
|
38
|
-
* endpoint to use for the talosclient.
|
|
38
|
+
* endpoint to use for the talosclient. If not set, the node value will be used
|
|
39
39
|
*/
|
|
40
40
|
endpoint?: string;
|
|
41
41
|
/**
|
|
42
42
|
* Filters to apply to the disks
|
|
43
43
|
*/
|
|
44
|
-
filters?: inputs.machine.
|
|
44
|
+
filters?: inputs.machine.GetDisksFilters;
|
|
45
45
|
/**
|
|
46
46
|
* controlplane node to retrieve the kubeconfig from
|
|
47
47
|
*/
|
|
48
48
|
node: string;
|
|
49
|
-
timeouts?: inputs.machine.
|
|
49
|
+
timeouts?: inputs.machine.GetDisksTimeouts;
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
|
-
* A collection of values returned by
|
|
52
|
+
* A collection of values returned by getDisks.
|
|
53
53
|
*/
|
|
54
|
-
export interface
|
|
54
|
+
export interface GetDisksResult {
|
|
55
55
|
/**
|
|
56
56
|
* The client configuration data
|
|
57
57
|
*/
|
|
58
|
-
readonly clientConfiguration: outputs.machine.
|
|
58
|
+
readonly clientConfiguration: outputs.machine.GetDisksClientConfiguration;
|
|
59
59
|
/**
|
|
60
60
|
* The disks that match the filters
|
|
61
61
|
*/
|
|
62
|
-
readonly disks: outputs.machine.
|
|
62
|
+
readonly disks: outputs.machine.GetDisksDisk[];
|
|
63
63
|
/**
|
|
64
|
-
* endpoint to use for the talosclient.
|
|
64
|
+
* endpoint to use for the talosclient. If not set, the node value will be used
|
|
65
65
|
*/
|
|
66
66
|
readonly endpoint: string;
|
|
67
67
|
/**
|
|
68
68
|
* Filters to apply to the disks
|
|
69
69
|
*/
|
|
70
|
-
readonly filters?: outputs.machine.
|
|
70
|
+
readonly filters?: outputs.machine.GetDisksFilters;
|
|
71
71
|
/**
|
|
72
72
|
* The generated ID of this resource
|
|
73
73
|
*/
|
|
@@ -76,12 +76,12 @@ export interface DisksResult {
|
|
|
76
76
|
* controlplane node to retrieve the kubeconfig from
|
|
77
77
|
*/
|
|
78
78
|
readonly node: string;
|
|
79
|
-
readonly timeouts?: outputs.machine.
|
|
79
|
+
readonly timeouts?: outputs.machine.GetDisksTimeouts;
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* Generate a machine configuration for a node type
|
|
83
83
|
*
|
|
84
|
-
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.
|
|
84
|
+
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.getDisks` data source maybe just used to query disk information that could be used elsewhere. It's recommended to use `machine.install.diskSelector` in Talos machine configuration.
|
|
85
85
|
*
|
|
86
86
|
* ## Example Usage
|
|
87
87
|
*
|
|
@@ -91,7 +91,7 @@ export interface DisksResult {
|
|
|
91
91
|
* import * as talos from "@pulumiverse/talos";
|
|
92
92
|
*
|
|
93
93
|
* const thisSecrets = new talos.machine.Secrets("thisSecrets", {});
|
|
94
|
-
* const thisDisks = talos.machine.
|
|
94
|
+
* const thisDisks = talos.machine.getDisksOutput({
|
|
95
95
|
* clientConfiguration: thisSecrets.clientConfiguration,
|
|
96
96
|
* node: "10.5.0.2",
|
|
97
97
|
* filters: {
|
|
@@ -102,26 +102,26 @@ export interface DisksResult {
|
|
|
102
102
|
* export const nvmeDisks = thisDisks.apply(thisDisks => thisDisks.disks.map(__item => __item.name));
|
|
103
103
|
* ```
|
|
104
104
|
*/
|
|
105
|
-
export declare function
|
|
105
|
+
export declare function getDisksOutput(args: GetDisksOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDisksResult>;
|
|
106
106
|
/**
|
|
107
|
-
* A collection of arguments for invoking
|
|
107
|
+
* A collection of arguments for invoking getDisks.
|
|
108
108
|
*/
|
|
109
|
-
export interface
|
|
109
|
+
export interface GetDisksOutputArgs {
|
|
110
110
|
/**
|
|
111
111
|
* The client configuration data
|
|
112
112
|
*/
|
|
113
|
-
clientConfiguration: pulumi.Input<inputs.machine.
|
|
113
|
+
clientConfiguration: pulumi.Input<inputs.machine.GetDisksClientConfigurationArgs>;
|
|
114
114
|
/**
|
|
115
|
-
* endpoint to use for the talosclient.
|
|
115
|
+
* endpoint to use for the talosclient. If not set, the node value will be used
|
|
116
116
|
*/
|
|
117
117
|
endpoint?: pulumi.Input<string>;
|
|
118
118
|
/**
|
|
119
119
|
* Filters to apply to the disks
|
|
120
120
|
*/
|
|
121
|
-
filters?: pulumi.Input<inputs.machine.
|
|
121
|
+
filters?: pulumi.Input<inputs.machine.GetDisksFiltersArgs>;
|
|
122
122
|
/**
|
|
123
123
|
* controlplane node to retrieve the kubeconfig from
|
|
124
124
|
*/
|
|
125
125
|
node: pulumi.Input<string>;
|
|
126
|
-
timeouts?: pulumi.Input<inputs.machine.
|
|
126
|
+
timeouts?: pulumi.Input<inputs.machine.GetDisksTimeoutsArgs>;
|
|
127
127
|
}
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
5
|
+
exports.getDisksOutput = exports.getDisks = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Generate a machine configuration for a node type
|
|
10
10
|
*
|
|
11
|
-
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.
|
|
11
|
+
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.getDisks` data source maybe just used to query disk information that could be used elsewhere. It's recommended to use `machine.install.diskSelector` in Talos machine configuration.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -18,7 +18,7 @@ const utilities = require("../utilities");
|
|
|
18
18
|
* import * as talos from "@pulumiverse/talos";
|
|
19
19
|
*
|
|
20
20
|
* const thisSecrets = new talos.machine.Secrets("thisSecrets", {});
|
|
21
|
-
* const thisDisks = talos.machine.
|
|
21
|
+
* const thisDisks = talos.machine.getDisksOutput({
|
|
22
22
|
* clientConfiguration: thisSecrets.clientConfiguration,
|
|
23
23
|
* node: "10.5.0.2",
|
|
24
24
|
* filters: {
|
|
@@ -29,9 +29,9 @@ const utilities = require("../utilities");
|
|
|
29
29
|
* export const nvmeDisks = thisDisks.apply(thisDisks => thisDisks.disks.map(__item => __item.name));
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
|
-
function
|
|
32
|
+
function getDisks(args, opts) {
|
|
33
33
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
34
|
-
return pulumi.runtime.invoke("talos:machine/
|
|
34
|
+
return pulumi.runtime.invoke("talos:machine/getDisks:getDisks", {
|
|
35
35
|
"clientConfiguration": args.clientConfiguration,
|
|
36
36
|
"endpoint": args.endpoint,
|
|
37
37
|
"filters": args.filters,
|
|
@@ -39,11 +39,11 @@ function disks(args, opts) {
|
|
|
39
39
|
"timeouts": args.timeouts,
|
|
40
40
|
}, opts);
|
|
41
41
|
}
|
|
42
|
-
exports.
|
|
42
|
+
exports.getDisks = getDisks;
|
|
43
43
|
/**
|
|
44
44
|
* Generate a machine configuration for a node type
|
|
45
45
|
*
|
|
46
|
-
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.
|
|
46
|
+
* > **Note:** Since Talos natively supports `.machine.install.diskSelector`, the `talos.machine.getDisks` data source maybe just used to query disk information that could be used elsewhere. It's recommended to use `machine.install.diskSelector` in Talos machine configuration.
|
|
47
47
|
*
|
|
48
48
|
* ## Example Usage
|
|
49
49
|
*
|
|
@@ -53,7 +53,7 @@ exports.disks = disks;
|
|
|
53
53
|
* import * as talos from "@pulumiverse/talos";
|
|
54
54
|
*
|
|
55
55
|
* const thisSecrets = new talos.machine.Secrets("thisSecrets", {});
|
|
56
|
-
* const thisDisks = talos.machine.
|
|
56
|
+
* const thisDisks = talos.machine.getDisksOutput({
|
|
57
57
|
* clientConfiguration: thisSecrets.clientConfiguration,
|
|
58
58
|
* node: "10.5.0.2",
|
|
59
59
|
* filters: {
|
|
@@ -64,8 +64,8 @@ exports.disks = disks;
|
|
|
64
64
|
* export const nvmeDisks = thisDisks.apply(thisDisks => thisDisks.disks.map(__item => __item.name));
|
|
65
65
|
* ```
|
|
66
66
|
*/
|
|
67
|
-
function
|
|
68
|
-
return pulumi.output(args).apply((a) =>
|
|
67
|
+
function getDisksOutput(args, opts) {
|
|
68
|
+
return pulumi.output(args).apply((a) => getDisks(a, opts));
|
|
69
69
|
}
|
|
70
|
-
exports.
|
|
71
|
-
//# sourceMappingURL=
|
|
70
|
+
exports.getDisksOutput = getDisksOutput;
|
|
71
|
+
//# sourceMappingURL=getDisks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDisks.js","sourceRoot":"","sources":["../../machine/getDisks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,4BAUC;AAuDD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/machine/index.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export { BootstrapArgs, BootstrapState } from "./bootstrap";
|
|
2
2
|
export type Bootstrap = import("./bootstrap").Bootstrap;
|
|
3
3
|
export declare const Bootstrap: typeof import("./bootstrap").Bootstrap;
|
|
4
|
-
export { ConfigurationArgs, ConfigurationResult, ConfigurationOutputArgs } from "./configuration";
|
|
5
|
-
export declare const configuration: typeof import("./configuration").configuration;
|
|
6
|
-
export declare const configurationOutput: typeof import("./configuration").configurationOutput;
|
|
7
4
|
export { ConfigurationApplyArgs, ConfigurationApplyState } from "./configurationApply";
|
|
8
5
|
export type ConfigurationApply = import("./configurationApply").ConfigurationApply;
|
|
9
6
|
export declare const ConfigurationApply: typeof import("./configurationApply").ConfigurationApply;
|
|
10
|
-
export {
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
7
|
+
export { GetConfigurationArgs, GetConfigurationResult, GetConfigurationOutputArgs } from "./getConfiguration";
|
|
8
|
+
export declare const getConfiguration: typeof import("./getConfiguration").getConfiguration;
|
|
9
|
+
export declare const getConfigurationOutput: typeof import("./getConfiguration").getConfigurationOutput;
|
|
10
|
+
export { GetDisksArgs, GetDisksResult, GetDisksOutputArgs } from "./getDisks";
|
|
11
|
+
export declare const getDisks: typeof import("./getDisks").getDisks;
|
|
12
|
+
export declare const getDisksOutput: typeof import("./getDisks").getDisksOutput;
|
|
13
13
|
export { SecretsArgs, SecretsState } from "./secrets";
|
|
14
14
|
export type Secrets = import("./secrets").Secrets;
|
|
15
15
|
export declare const Secrets: typeof import("./secrets").Secrets;
|
package/machine/index.js
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.Secrets = exports.
|
|
5
|
+
exports.Secrets = exports.getDisksOutput = exports.getDisks = exports.getConfigurationOutput = exports.getConfiguration = exports.ConfigurationApply = exports.Bootstrap = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Bootstrap = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["Bootstrap"], () => require("./bootstrap"));
|
|
10
|
-
exports.configuration = null;
|
|
11
|
-
exports.configurationOutput = null;
|
|
12
|
-
utilities.lazyLoad(exports, ["configuration", "configurationOutput"], () => require("./configuration"));
|
|
13
10
|
exports.ConfigurationApply = null;
|
|
14
11
|
utilities.lazyLoad(exports, ["ConfigurationApply"], () => require("./configurationApply"));
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
utilities.lazyLoad(exports, ["
|
|
12
|
+
exports.getConfiguration = null;
|
|
13
|
+
exports.getConfigurationOutput = null;
|
|
14
|
+
utilities.lazyLoad(exports, ["getConfiguration", "getConfigurationOutput"], () => require("./getConfiguration"));
|
|
15
|
+
exports.getDisks = null;
|
|
16
|
+
exports.getDisksOutput = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["getDisks", "getDisksOutput"], () => require("./getDisks"));
|
|
18
18
|
exports.Secrets = null;
|
|
19
19
|
utilities.lazyLoad(exports, ["Secrets"], () => require("./secrets"));
|
|
20
20
|
const _module = {
|
package/machine/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../machine/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../machine/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAG9E,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAGnG,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI3E,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGrE,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,mCAAmC;gBACpC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,qDAAqD;gBACtD,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,+BAA+B;gBAChC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA"}
|
package/machine/secrets.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export declare class Secrets extends pulumi.CustomResource {
|
|
|
44
44
|
/**
|
|
45
45
|
* The secrets for the talos cluster
|
|
46
46
|
*/
|
|
47
|
-
readonly machineSecrets: pulumi.Output<outputs.machine.
|
|
47
|
+
readonly machineSecrets: pulumi.Output<outputs.machine.MachineSecrets>;
|
|
48
48
|
/**
|
|
49
49
|
* The version of talos features to use in generated machine configuration
|
|
50
50
|
*/
|
|
@@ -69,7 +69,7 @@ export interface SecretsState {
|
|
|
69
69
|
/**
|
|
70
70
|
* The secrets for the talos cluster
|
|
71
71
|
*/
|
|
72
|
-
machineSecrets?: pulumi.Input<inputs.machine.
|
|
72
|
+
machineSecrets?: pulumi.Input<inputs.machine.MachineSecretsArgs>;
|
|
73
73
|
/**
|
|
74
74
|
* The version of talos features to use in generated machine configuration
|
|
75
75
|
*/
|