@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.
Files changed (36) hide show
  1. package/client/{configuration.d.ts → getConfiguration.d.ts} +13 -13
  2. package/client/{configuration.js → getConfiguration.js} +10 -10
  3. package/client/getConfiguration.js.map +1 -0
  4. package/client/index.d.ts +3 -3
  5. package/client/index.js +4 -4
  6. package/client/index.js.map +1 -1
  7. package/cluster/getHealth.d.ts +81 -0
  8. package/cluster/getHealth.js +29 -0
  9. package/cluster/getHealth.js.map +1 -0
  10. package/cluster/getKubeconfig.d.ts +95 -0
  11. package/cluster/{kubeconfig.js → getKubeconfig.js} +8 -8
  12. package/cluster/getKubeconfig.js.map +1 -0
  13. package/cluster/index.d.ts +6 -3
  14. package/cluster/index.js +7 -4
  15. package/cluster/index.js.map +1 -1
  16. package/machine/{configuration.d.ts → getConfiguration.d.ts} +13 -13
  17. package/machine/{configuration.js → getConfiguration.js} +10 -10
  18. package/machine/getConfiguration.js.map +1 -0
  19. package/machine/{disks.d.ts → getDisks.d.ts} +25 -25
  20. package/machine/{disks.js → getDisks.js} +12 -12
  21. package/machine/getDisks.js.map +1 -0
  22. package/machine/index.d.ts +6 -6
  23. package/machine/index.js +7 -7
  24. package/machine/index.js.map +1 -1
  25. package/machine/secrets.d.ts +2 -2
  26. package/package.json +1 -1
  27. package/types/input.d.ts +157 -304
  28. package/types/output.d.ts +93 -223
  29. package/utilities.d.ts +4 -0
  30. package/utilities.js +33 -1
  31. package/utilities.js.map +1 -1
  32. package/client/configuration.js.map +0 -1
  33. package/cluster/kubeconfig.d.ts +0 -89
  34. package/cluster/kubeconfig.js.map +0 -1
  35. package/machine/configuration.js.map +0 -1
  36. package/machine/disks.js.map +0 -1
package/types/input.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  export declare namespace client {
4
- interface ConfigurationClientConfiguration {
4
+ interface GetConfigurationClientConfiguration {
5
5
  /**
6
6
  * The client CA certificate
7
7
  */
@@ -15,7 +15,7 @@ export declare namespace client {
15
15
  */
16
16
  clientKey: string;
17
17
  }
18
- interface ConfigurationClientConfigurationArgs {
18
+ interface GetConfigurationClientConfigurationArgs {
19
19
  /**
20
20
  * The client CA certificate
21
21
  */
@@ -31,7 +31,7 @@ export declare namespace client {
31
31
  }
32
32
  }
33
33
  export declare namespace cluster {
34
- interface KubeconfigClientConfiguration {
34
+ interface GetHealthClientConfiguration {
35
35
  /**
36
36
  * The client CA certificate
37
37
  */
@@ -45,7 +45,7 @@ export declare namespace cluster {
45
45
  */
46
46
  clientKey: string;
47
47
  }
48
- interface KubeconfigClientConfigurationArgs {
48
+ interface GetHealthClientConfigurationArgs {
49
49
  /**
50
50
  * The client CA certificate
51
51
  */
@@ -59,41 +59,33 @@ export declare namespace cluster {
59
59
  */
60
60
  clientKey: pulumi.Input<string>;
61
61
  }
62
- interface KubeconfigTimeouts {
62
+ interface GetHealthTimeouts {
63
63
  /**
64
64
  * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
65
65
  */
66
66
  read?: string;
67
67
  }
68
- interface KubeconfigTimeoutsArgs {
68
+ interface GetHealthTimeoutsArgs {
69
69
  /**
70
70
  * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
71
71
  */
72
72
  read?: pulumi.Input<string>;
73
73
  }
74
- }
75
- export declare namespace machine {
76
- interface BootstrapClientConfiguration {
74
+ interface GetKubeconfigClientConfiguration {
77
75
  /**
78
76
  * The client CA certificate
79
77
  */
80
- caCertificate: pulumi.Input<string>;
78
+ caCertificate: string;
81
79
  /**
82
80
  * The client certificate
83
81
  */
84
- clientCertificate: pulumi.Input<string>;
82
+ clientCertificate: string;
85
83
  /**
86
84
  * The client key
87
85
  */
88
- clientKey: pulumi.Input<string>;
89
- }
90
- interface BootstrapTimeouts {
91
- /**
92
- * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
93
- */
94
- create?: pulumi.Input<string>;
86
+ clientKey: string;
95
87
  }
96
- interface ConfigurationApplyClientConfiguration {
88
+ interface GetKubeconfigClientConfigurationArgs {
97
89
  /**
98
90
  * The client CA certificate
99
91
  */
@@ -107,233 +99,127 @@ export declare namespace machine {
107
99
  */
108
100
  clientKey: pulumi.Input<string>;
109
101
  }
110
- interface ConfigurationMachineSecrets {
111
- /**
112
- * The certs for the talos kubernetes cluster
113
- */
114
- certs: inputs.machine.ConfigurationMachineSecretsCerts;
115
- /**
116
- * The cluster secrets
117
- */
118
- cluster: inputs.machine.ConfigurationMachineSecretsCluster;
119
- /**
120
- * The secrets for the talos kubernetes cluster
121
- */
122
- secrets: inputs.machine.ConfigurationMachineSecretsSecrets;
123
- /**
124
- * The trustd info for the talos kubernetes cluster
125
- */
126
- trustdinfo: inputs.machine.ConfigurationMachineSecretsTrustdinfo;
127
- }
128
- interface ConfigurationMachineSecretsArgs {
129
- /**
130
- * The certs for the talos kubernetes cluster
131
- */
132
- certs: pulumi.Input<inputs.machine.ConfigurationMachineSecretsCertsArgs>;
133
- /**
134
- * The cluster secrets
135
- */
136
- cluster: pulumi.Input<inputs.machine.ConfigurationMachineSecretsClusterArgs>;
137
- /**
138
- * The secrets for the talos kubernetes cluster
139
- */
140
- secrets: pulumi.Input<inputs.machine.ConfigurationMachineSecretsSecretsArgs>;
141
- /**
142
- * The trustd info for the talos kubernetes cluster
143
- */
144
- trustdinfo: pulumi.Input<inputs.machine.ConfigurationMachineSecretsTrustdinfoArgs>;
145
- }
146
- interface ConfigurationMachineSecretsCerts {
147
- /**
148
- * The certificate and key pair
149
- */
150
- etcd: inputs.machine.ConfigurationMachineSecretsCertsEtcd;
151
- /**
152
- * The certificate and key pair
153
- */
154
- k8s: inputs.machine.ConfigurationMachineSecretsCertsK8s;
155
- /**
156
- * The certificate and key pair
157
- */
158
- k8sAggregator: inputs.machine.ConfigurationMachineSecretsCertsK8sAggregator;
159
- k8sServiceaccount: inputs.machine.ConfigurationMachineSecretsCertsK8sServiceaccount;
160
- /**
161
- * The certificate and key pair
162
- */
163
- os: inputs.machine.ConfigurationMachineSecretsCertsOs;
164
- }
165
- interface ConfigurationMachineSecretsCertsArgs {
166
- /**
167
- * The certificate and key pair
168
- */
169
- etcd: pulumi.Input<inputs.machine.ConfigurationMachineSecretsCertsEtcdArgs>;
170
- /**
171
- * The certificate and key pair
172
- */
173
- k8s: pulumi.Input<inputs.machine.ConfigurationMachineSecretsCertsK8sArgs>;
174
- /**
175
- * The certificate and key pair
176
- */
177
- k8sAggregator: pulumi.Input<inputs.machine.ConfigurationMachineSecretsCertsK8sAggregatorArgs>;
178
- k8sServiceaccount: pulumi.Input<inputs.machine.ConfigurationMachineSecretsCertsK8sServiceaccountArgs>;
179
- /**
180
- * The certificate and key pair
181
- */
182
- os: pulumi.Input<inputs.machine.ConfigurationMachineSecretsCertsOsArgs>;
183
- }
184
- interface ConfigurationMachineSecretsCertsEtcd {
185
- /**
186
- * certificate data
187
- */
188
- cert: string;
189
- /**
190
- * key data
191
- */
192
- key: string;
193
- }
194
- interface ConfigurationMachineSecretsCertsEtcdArgs {
195
- /**
196
- * certificate data
197
- */
198
- cert: pulumi.Input<string>;
199
- /**
200
- * key data
201
- */
202
- key: pulumi.Input<string>;
203
- }
204
- interface ConfigurationMachineSecretsCertsK8s {
205
- /**
206
- * certificate data
207
- */
208
- cert: string;
209
- /**
210
- * key data
211
- */
212
- key: string;
213
- }
214
- interface ConfigurationMachineSecretsCertsK8sArgs {
215
- /**
216
- * certificate data
217
- */
218
- cert: pulumi.Input<string>;
102
+ interface GetKubeconfigTimeouts {
219
103
  /**
220
- * key data
104
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
221
105
  */
222
- key: pulumi.Input<string>;
106
+ read?: string;
223
107
  }
224
- interface ConfigurationMachineSecretsCertsK8sAggregator {
225
- /**
226
- * certificate data
227
- */
228
- cert: string;
108
+ interface GetKubeconfigTimeoutsArgs {
229
109
  /**
230
- * key data
110
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
231
111
  */
232
- key: string;
112
+ read?: pulumi.Input<string>;
233
113
  }
234
- interface ConfigurationMachineSecretsCertsK8sAggregatorArgs {
114
+ }
115
+ export declare namespace machine {
116
+ interface BootstrapClientConfiguration {
235
117
  /**
236
- * certificate data
118
+ * The client CA certificate
237
119
  */
238
- cert: pulumi.Input<string>;
120
+ caCertificate: pulumi.Input<string>;
239
121
  /**
240
- * key data
122
+ * The client certificate
241
123
  */
242
- key: pulumi.Input<string>;
243
- }
244
- interface ConfigurationMachineSecretsCertsK8sServiceaccount {
124
+ clientCertificate: pulumi.Input<string>;
245
125
  /**
246
- * key data
126
+ * The client key
247
127
  */
248
- key: string;
128
+ clientKey: pulumi.Input<string>;
249
129
  }
250
- interface ConfigurationMachineSecretsCertsK8sServiceaccountArgs {
130
+ interface BootstrapTimeouts {
251
131
  /**
252
- * key data
132
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
253
133
  */
254
- key: pulumi.Input<string>;
134
+ create?: pulumi.Input<string>;
255
135
  }
256
- interface ConfigurationMachineSecretsCertsOs {
136
+ /**
137
+ * A Machine Secrets Certificate
138
+ */
139
+ interface Certificate {
257
140
  /**
258
- * certificate data
141
+ * Certificate
259
142
  */
260
143
  cert: string;
261
144
  /**
262
- * key data
145
+ * Private Key
263
146
  */
264
147
  key: string;
265
148
  }
266
- interface ConfigurationMachineSecretsCertsOsArgs {
149
+ /**
150
+ * A Machine Secrets Certificate
151
+ */
152
+ interface CertificateArgs {
267
153
  /**
268
- * certificate data
154
+ * Certificate
269
155
  */
270
156
  cert: pulumi.Input<string>;
271
157
  /**
272
- * key data
158
+ * Private Key
273
159
  */
274
160
  key: pulumi.Input<string>;
275
161
  }
276
- interface ConfigurationMachineSecretsCluster {
277
- /**
278
- * The cluster id
162
+ /**
163
+ * A complete Machine Secrets Certificates configuration
164
+ */
165
+ interface Certificates {
166
+ etcd: inputs.machine.Certificate;
167
+ k8s: inputs.machine.Certificate;
168
+ k8s_aggregator: inputs.machine.Certificate;
169
+ k8s_serviceaccount: inputs.machine.Key;
170
+ os: inputs.machine.Certificate;
171
+ }
172
+ /**
173
+ * A complete Machine Secrets Certificates configuration
174
+ */
175
+ interface CertificatesArgs {
176
+ etcd: pulumi.Input<inputs.machine.CertificateArgs>;
177
+ k8s: pulumi.Input<inputs.machine.CertificateArgs>;
178
+ k8s_aggregator: pulumi.Input<inputs.machine.CertificateArgs>;
179
+ k8s_serviceaccount: pulumi.Input<inputs.machine.KeyArgs>;
180
+ os: pulumi.Input<inputs.machine.CertificateArgs>;
181
+ }
182
+ /**
183
+ * A Machine Secrets Cluster Info
184
+ */
185
+ interface Cluster {
186
+ /**
187
+ * Certificate
279
188
  */
280
189
  id: string;
281
190
  /**
282
- * The cluster secret
191
+ * Private Key
283
192
  */
284
193
  secret: string;
285
194
  }
286
- interface ConfigurationMachineSecretsClusterArgs {
195
+ /**
196
+ * A Machine Secrets Cluster Info
197
+ */
198
+ interface ClusterArgs {
287
199
  /**
288
- * The cluster id
200
+ * Certificate
289
201
  */
290
202
  id: pulumi.Input<string>;
291
203
  /**
292
- * The cluster secret
204
+ * Private Key
293
205
  */
294
206
  secret: pulumi.Input<string>;
295
207
  }
296
- interface ConfigurationMachineSecretsSecrets {
297
- /**
298
- * The aescbc encryption secret for the talos kubernetes cluster
299
- */
300
- aescbcEncryptionSecret?: string;
301
- /**
302
- * The bootstrap token for the talos kubernetes cluster
303
- */
304
- bootstrapToken: string;
305
- /**
306
- * The secretbox encryption secret for the talos kubernetes cluster
307
- */
308
- secretboxEncryptionSecret: string;
309
- }
310
- interface ConfigurationMachineSecretsSecretsArgs {
311
- /**
312
- * The aescbc encryption secret for the talos kubernetes cluster
313
- */
314
- aescbcEncryptionSecret?: pulumi.Input<string>;
315
- /**
316
- * The bootstrap token for the talos kubernetes cluster
317
- */
318
- bootstrapToken: pulumi.Input<string>;
208
+ interface ConfigurationApplyClientConfiguration {
319
209
  /**
320
- * The secretbox encryption secret for the talos kubernetes cluster
210
+ * The client CA certificate
321
211
  */
322
- secretboxEncryptionSecret: pulumi.Input<string>;
323
- }
324
- interface ConfigurationMachineSecretsTrustdinfo {
212
+ caCertificate: pulumi.Input<string>;
325
213
  /**
326
- * The trustd token for the talos kubernetes cluster
214
+ * The client certificate
327
215
  */
328
- token: string;
329
- }
330
- interface ConfigurationMachineSecretsTrustdinfoArgs {
216
+ clientCertificate: pulumi.Input<string>;
331
217
  /**
332
- * The trustd token for the talos kubernetes cluster
218
+ * The client key
333
219
  */
334
- token: pulumi.Input<string>;
220
+ clientKey: pulumi.Input<string>;
335
221
  }
336
- interface DisksClientConfiguration {
222
+ interface GetDisksClientConfiguration {
337
223
  /**
338
224
  * The client CA certificate
339
225
  */
@@ -347,7 +233,7 @@ export declare namespace machine {
347
233
  */
348
234
  clientKey: string;
349
235
  }
350
- interface DisksClientConfigurationArgs {
236
+ interface GetDisksClientConfigurationArgs {
351
237
  /**
352
238
  * The client CA certificate
353
239
  */
@@ -361,7 +247,7 @@ export declare namespace machine {
361
247
  */
362
248
  clientKey: pulumi.Input<string>;
363
249
  }
364
- interface DisksFilters {
250
+ interface GetDisksFilters {
365
251
  /**
366
252
  * Filter disks by bus path
367
253
  */
@@ -399,7 +285,7 @@ export declare namespace machine {
399
285
  */
400
286
  wwid?: string;
401
287
  }
402
- interface DisksFiltersArgs {
288
+ interface GetDisksFiltersArgs {
403
289
  /**
404
290
  * Filter disks by bus path
405
291
  */
@@ -437,153 +323,120 @@ export declare namespace machine {
437
323
  */
438
324
  wwid?: pulumi.Input<string>;
439
325
  }
440
- interface DisksTimeouts {
326
+ interface GetDisksTimeouts {
441
327
  /**
442
328
  * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
443
329
  */
444
330
  read?: string;
445
331
  }
446
- interface DisksTimeoutsArgs {
332
+ interface GetDisksTimeoutsArgs {
447
333
  /**
448
334
  * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
449
335
  */
450
336
  read?: pulumi.Input<string>;
451
337
  }
452
- interface SecretsClientConfiguration {
338
+ /**
339
+ * A Machine Secrets Private Key
340
+ */
341
+ interface Key {
453
342
  /**
454
- * The client CA certificate
455
- */
456
- caCertificate?: pulumi.Input<string>;
457
- /**
458
- * The client certificate
343
+ * Private Key
459
344
  */
460
- clientCertificate?: pulumi.Input<string>;
461
- /**
462
- * The client key
463
- */
464
- clientKey?: pulumi.Input<string>;
465
- }
466
- interface SecretsMachineSecrets {
467
- certs?: pulumi.Input<inputs.machine.SecretsMachineSecretsCerts>;
468
- /**
469
- * The cluster secrets
470
- */
471
- cluster?: pulumi.Input<inputs.machine.SecretsMachineSecretsCluster>;
472
- /**
473
- * kubernetes cluster secrets
474
- */
475
- secrets?: pulumi.Input<inputs.machine.SecretsMachineSecretsSecrets>;
476
- /**
477
- * trustd secrets
478
- */
479
- trustdinfo?: pulumi.Input<inputs.machine.SecretsMachineSecretsTrustdinfo>;
480
- }
481
- interface SecretsMachineSecretsCerts {
482
- /**
483
- * The certificate and key pair
484
- */
485
- etcd?: pulumi.Input<inputs.machine.SecretsMachineSecretsCertsEtcd>;
486
- /**
487
- * The certificate and key pair
488
- */
489
- k8s?: pulumi.Input<inputs.machine.SecretsMachineSecretsCertsK8s>;
490
- /**
491
- * The certificate and key pair
492
- */
493
- k8sAggregator?: pulumi.Input<inputs.machine.SecretsMachineSecretsCertsK8sAggregator>;
494
- /**
495
- * The service account secrets
496
- */
497
- k8sServiceaccount?: pulumi.Input<inputs.machine.SecretsMachineSecretsCertsK8sServiceaccount>;
498
- /**
499
- * The certificate and key pair
500
- */
501
- os?: pulumi.Input<inputs.machine.SecretsMachineSecretsCertsOs>;
345
+ key: string;
502
346
  }
503
- interface SecretsMachineSecretsCertsEtcd {
504
- /**
505
- * certificate data
506
- */
507
- cert?: pulumi.Input<string>;
347
+ /**
348
+ * A Machine Secrets Private Key
349
+ */
350
+ interface KeyArgs {
508
351
  /**
509
- * key data
352
+ * Private Key
510
353
  */
511
- key?: pulumi.Input<string>;
354
+ key: pulumi.Input<string>;
512
355
  }
513
- interface SecretsMachineSecretsCertsK8s {
356
+ /**
357
+ * A complete Machine Secrets configuration
358
+ */
359
+ interface MachineSecrets {
360
+ certs: inputs.machine.Certificates;
361
+ cluster: inputs.machine.Cluster;
362
+ secrets: inputs.machine.Secrets;
363
+ trustdinfo: inputs.machine.TrustdInfo;
364
+ }
365
+ /**
366
+ * A complete Machine Secrets configuration
367
+ */
368
+ interface MachineSecretsArgs {
369
+ certs: pulumi.Input<inputs.machine.CertificatesArgs>;
370
+ cluster: pulumi.Input<inputs.machine.ClusterArgs>;
371
+ secrets: pulumi.Input<inputs.machine.SecretsArgs>;
372
+ trustdinfo: pulumi.Input<inputs.machine.TrustdInfoArgs>;
373
+ }
374
+ /**
375
+ * A Machine Secrets Bootstrap data
376
+ */
377
+ interface Secrets {
514
378
  /**
515
- * certificate data
379
+ * The bootstrap token for the talos kubernetes cluster
516
380
  */
517
- cert?: pulumi.Input<string>;
381
+ bootstrap_token: string;
518
382
  /**
519
- * key data
383
+ * The secretbox encryption secret for the talos kubernetes cluster
520
384
  */
521
- key?: pulumi.Input<string>;
385
+ secretbox_encryption_secret: string;
522
386
  }
523
- interface SecretsMachineSecretsCertsK8sAggregator {
387
+ /**
388
+ * A Machine Secrets Bootstrap data
389
+ */
390
+ interface SecretsArgs {
524
391
  /**
525
- * certificate data
526
- */
527
- cert?: pulumi.Input<string>;
528
- /**
529
- * key data
392
+ * The bootstrap token for the talos kubernetes cluster
530
393
  */
531
- key?: pulumi.Input<string>;
532
- }
533
- interface SecretsMachineSecretsCertsK8sServiceaccount {
394
+ bootstrap_token: pulumi.Input<string>;
534
395
  /**
535
- * key data
396
+ * The secretbox encryption secret for the talos kubernetes cluster
536
397
  */
537
- key?: pulumi.Input<string>;
398
+ secretbox_encryption_secret: pulumi.Input<string>;
538
399
  }
539
- interface SecretsMachineSecretsCertsOs {
540
- /**
541
- * certificate data
542
- */
543
- cert?: pulumi.Input<string>;
400
+ interface SecretsClientConfiguration {
544
401
  /**
545
- * key data
402
+ * The client CA certificate
546
403
  */
547
- key?: pulumi.Input<string>;
548
- }
549
- interface SecretsMachineSecretsCluster {
404
+ caCertificate?: pulumi.Input<string>;
550
405
  /**
551
- * The cluster ID
406
+ * The client certificate
552
407
  */
553
- id?: pulumi.Input<string>;
408
+ clientCertificate?: pulumi.Input<string>;
554
409
  /**
555
- * The cluster secret
410
+ * The client key
556
411
  */
557
- secret?: pulumi.Input<string>;
412
+ clientKey?: pulumi.Input<string>;
558
413
  }
559
- interface SecretsMachineSecretsSecrets {
560
- /**
561
- * The AES-CBC encryption secret
562
- */
563
- aescbcEncryptionSecret?: pulumi.Input<string>;
414
+ interface Timeout {
564
415
  /**
565
- * The bootstrap token
416
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
566
417
  */
567
- bootstrapToken?: pulumi.Input<string>;
418
+ create?: pulumi.Input<string>;
568
419
  /**
569
- * The secretbox encryption secret
420
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
570
421
  */
571
- secretboxEncryptionSecret?: pulumi.Input<string>;
422
+ update?: pulumi.Input<string>;
572
423
  }
573
- interface SecretsMachineSecretsTrustdinfo {
424
+ /**
425
+ * A Machine Secrets Trust daemon info
426
+ */
427
+ interface TrustdInfo {
574
428
  /**
575
- * The trustd token
429
+ * The trustd token for the talos kubernetes cluster
576
430
  */
577
- token?: pulumi.Input<string>;
431
+ token: string;
578
432
  }
579
- interface Timeout {
580
- /**
581
- * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
582
- */
583
- create?: pulumi.Input<string>;
433
+ /**
434
+ * A Machine Secrets Trust daemon info
435
+ */
436
+ interface TrustdInfoArgs {
584
437
  /**
585
- * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
438
+ * The trustd token for the talos kubernetes cluster
586
439
  */
587
- update?: pulumi.Input<string>;
440
+ token: pulumi.Input<string>;
588
441
  }
589
442
  }