@cdktf-providers/siderolabs-talos 0.9.0 → 0.10.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/README.md +3 -3
- package/dist/cluster-kubeconfig/index.d.ts +13 -13
- package/dist/cluster-kubeconfig/index.js +6 -6
- package/dist/data-talos-client-configuration/index.d.ts +10 -10
- package/dist/data-talos-client-configuration/index.js +6 -6
- package/dist/data-talos-cluster-health/index.d.ts +13 -13
- package/dist/data-talos-cluster-health/index.js +6 -6
- package/dist/data-talos-cluster-kubeconfig/index.d.ts +12 -12
- package/dist/data-talos-cluster-kubeconfig/index.js +6 -6
- package/dist/data-talos-image-factory-extensions-versions/index.d.ts +6 -6
- package/dist/data-talos-image-factory-extensions-versions/index.js +6 -6
- package/dist/data-talos-image-factory-overlays-versions/index.d.ts +6 -6
- package/dist/data-talos-image-factory-overlays-versions/index.js +6 -6
- package/dist/data-talos-image-factory-urls/index.d.ts +13 -8
- package/dist/data-talos-image-factory-urls/index.js +6 -6
- package/dist/data-talos-image-factory-versions/index.d.ts +5 -5
- package/dist/data-talos-image-factory-versions/index.js +6 -6
- package/dist/data-talos-machine-configuration/index.d.ts +36 -36
- package/dist/data-talos-machine-configuration/index.js +6 -6
- package/dist/data-talos-machine-disks/index.d.ts +12 -12
- package/dist/data-talos-machine-disks/index.js +6 -6
- package/dist/image-factory-schematic/index.d.ts +4 -4
- package/dist/image-factory-schematic/index.js +6 -6
- package/dist/machine-bootstrap/index.d.ts +11 -11
- package/dist/machine-bootstrap/index.js +6 -6
- package/dist/machine-configuration-apply/index.d.ts +20 -20
- package/dist/machine-configuration-apply/index.js +6 -6
- package/dist/machine-secrets/index.d.ts +4 -4
- package/dist/machine-secrets/index.js +6 -6
- package/dist/provider/index.d.ts +5 -5
- package/dist/provider/index.js +6 -6
- package/package.json +2 -2
|
@@ -4,55 +4,55 @@ export interface DataTalosMachineConfigurationConfig extends cdktf.TerraformMeta
|
|
|
4
4
|
/**
|
|
5
5
|
* The endpoint of the talos kubernetes cluster
|
|
6
6
|
*
|
|
7
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cluster_endpoint DataTalosMachineConfiguration#cluster_endpoint}
|
|
8
8
|
*/
|
|
9
9
|
readonly clusterEndpoint: string;
|
|
10
10
|
/**
|
|
11
11
|
* The name of the talos kubernetes cluster
|
|
12
12
|
*
|
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cluster_name DataTalosMachineConfiguration#cluster_name}
|
|
14
14
|
*/
|
|
15
15
|
readonly clusterName: string;
|
|
16
16
|
/**
|
|
17
17
|
* The list of config patches to apply to the generated configuration
|
|
18
18
|
*
|
|
19
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
19
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#config_patches DataTalosMachineConfiguration#config_patches}
|
|
20
20
|
*/
|
|
21
21
|
readonly configPatches?: string[];
|
|
22
22
|
/**
|
|
23
23
|
* Whether to generate documentation for the generated configuration. Defaults to false
|
|
24
24
|
*
|
|
25
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
25
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#docs DataTalosMachineConfiguration#docs}
|
|
26
26
|
*/
|
|
27
27
|
readonly docs?: boolean | cdktf.IResolvable;
|
|
28
28
|
/**
|
|
29
29
|
* Whether to generate examples for the generated configuration. Defaults to false
|
|
30
30
|
*
|
|
31
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
31
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#examples DataTalosMachineConfiguration#examples}
|
|
32
32
|
*/
|
|
33
33
|
readonly examples?: boolean | cdktf.IResolvable;
|
|
34
34
|
/**
|
|
35
35
|
* The version of kubernetes to use
|
|
36
36
|
*
|
|
37
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
37
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#kubernetes_version DataTalosMachineConfiguration#kubernetes_version}
|
|
38
38
|
*/
|
|
39
39
|
readonly kubernetesVersion?: string;
|
|
40
40
|
/**
|
|
41
41
|
* The secrets for the talos cluster
|
|
42
42
|
*
|
|
43
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
43
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#machine_secrets DataTalosMachineConfiguration#machine_secrets}
|
|
44
44
|
*/
|
|
45
45
|
readonly machineSecrets: DataTalosMachineConfigurationMachineSecrets;
|
|
46
46
|
/**
|
|
47
47
|
* The type of machine to generate the configuration for
|
|
48
48
|
*
|
|
49
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
49
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#machine_type DataTalosMachineConfiguration#machine_type}
|
|
50
50
|
*/
|
|
51
51
|
readonly machineType: string;
|
|
52
52
|
/**
|
|
53
53
|
* The version of talos features to use in generated machine configuration
|
|
54
54
|
*
|
|
55
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
55
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#talos_version DataTalosMachineConfiguration#talos_version}
|
|
56
56
|
*/
|
|
57
57
|
readonly talosVersion?: string;
|
|
58
58
|
}
|
|
@@ -60,13 +60,13 @@ export interface DataTalosMachineConfigurationMachineSecretsCertsEtcd {
|
|
|
60
60
|
/**
|
|
61
61
|
* certificate data
|
|
62
62
|
*
|
|
63
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
63
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
64
64
|
*/
|
|
65
65
|
readonly cert: string;
|
|
66
66
|
/**
|
|
67
67
|
* key data
|
|
68
68
|
*
|
|
69
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
69
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
70
70
|
*/
|
|
71
71
|
readonly key: string;
|
|
72
72
|
}
|
|
@@ -95,13 +95,13 @@ export interface DataTalosMachineConfigurationMachineSecretsCertsK8S {
|
|
|
95
95
|
/**
|
|
96
96
|
* certificate data
|
|
97
97
|
*
|
|
98
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
98
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
99
99
|
*/
|
|
100
100
|
readonly cert: string;
|
|
101
101
|
/**
|
|
102
102
|
* key data
|
|
103
103
|
*
|
|
104
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
104
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
105
105
|
*/
|
|
106
106
|
readonly key: string;
|
|
107
107
|
}
|
|
@@ -130,13 +130,13 @@ export interface DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator {
|
|
|
130
130
|
/**
|
|
131
131
|
* certificate data
|
|
132
132
|
*
|
|
133
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
134
134
|
*/
|
|
135
135
|
readonly cert: string;
|
|
136
136
|
/**
|
|
137
137
|
* key data
|
|
138
138
|
*
|
|
139
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
139
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
140
140
|
*/
|
|
141
141
|
readonly key: string;
|
|
142
142
|
}
|
|
@@ -165,7 +165,7 @@ export interface DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccou
|
|
|
165
165
|
/**
|
|
166
166
|
* The key for the k8s service account
|
|
167
167
|
*
|
|
168
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
168
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
169
169
|
*/
|
|
170
170
|
readonly key: string;
|
|
171
171
|
}
|
|
@@ -190,13 +190,13 @@ export interface DataTalosMachineConfigurationMachineSecretsCertsOs {
|
|
|
190
190
|
/**
|
|
191
191
|
* certificate data
|
|
192
192
|
*
|
|
193
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
193
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
194
194
|
*/
|
|
195
195
|
readonly cert: string;
|
|
196
196
|
/**
|
|
197
197
|
* key data
|
|
198
198
|
*
|
|
199
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
199
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
200
200
|
*/
|
|
201
201
|
readonly key: string;
|
|
202
202
|
}
|
|
@@ -225,29 +225,29 @@ export interface DataTalosMachineConfigurationMachineSecretsCerts {
|
|
|
225
225
|
/**
|
|
226
226
|
* The certificate and key pair
|
|
227
227
|
*
|
|
228
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
228
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#etcd DataTalosMachineConfiguration#etcd}
|
|
229
229
|
*/
|
|
230
230
|
readonly etcd: DataTalosMachineConfigurationMachineSecretsCertsEtcd;
|
|
231
231
|
/**
|
|
232
232
|
* The certificate and key pair
|
|
233
233
|
*
|
|
234
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
234
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#k8s DataTalosMachineConfiguration#k8s}
|
|
235
235
|
*/
|
|
236
236
|
readonly k8S: DataTalosMachineConfigurationMachineSecretsCertsK8S;
|
|
237
237
|
/**
|
|
238
238
|
* The certificate and key pair
|
|
239
239
|
*
|
|
240
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
240
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#k8s_aggregator DataTalosMachineConfiguration#k8s_aggregator}
|
|
241
241
|
*/
|
|
242
242
|
readonly k8SAggregator: DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator;
|
|
243
243
|
/**
|
|
244
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
244
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#k8s_serviceaccount DataTalosMachineConfiguration#k8s_serviceaccount}
|
|
245
245
|
*/
|
|
246
246
|
readonly k8SServiceaccount: DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount;
|
|
247
247
|
/**
|
|
248
248
|
* The certificate and key pair
|
|
249
249
|
*
|
|
250
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
250
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#os DataTalosMachineConfiguration#os}
|
|
251
251
|
*/
|
|
252
252
|
readonly os: DataTalosMachineConfigurationMachineSecretsCertsOs;
|
|
253
253
|
}
|
|
@@ -288,7 +288,7 @@ export interface DataTalosMachineConfigurationMachineSecretsCluster {
|
|
|
288
288
|
/**
|
|
289
289
|
* The cluster id
|
|
290
290
|
*
|
|
291
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
291
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#id DataTalosMachineConfiguration#id}
|
|
292
292
|
*
|
|
293
293
|
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
294
294
|
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
@@ -297,7 +297,7 @@ export interface DataTalosMachineConfigurationMachineSecretsCluster {
|
|
|
297
297
|
/**
|
|
298
298
|
* The cluster secret
|
|
299
299
|
*
|
|
300
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
300
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#secret DataTalosMachineConfiguration#secret}
|
|
301
301
|
*/
|
|
302
302
|
readonly secret: string;
|
|
303
303
|
}
|
|
@@ -326,19 +326,19 @@ export interface DataTalosMachineConfigurationMachineSecretsSecrets {
|
|
|
326
326
|
/**
|
|
327
327
|
* The aescbc encryption secret for the talos kubernetes cluster
|
|
328
328
|
*
|
|
329
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
329
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#aescbc_encryption_secret DataTalosMachineConfiguration#aescbc_encryption_secret}
|
|
330
330
|
*/
|
|
331
331
|
readonly aescbcEncryptionSecret?: string;
|
|
332
332
|
/**
|
|
333
333
|
* The bootstrap token for the talos kubernetes cluster
|
|
334
334
|
*
|
|
335
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
335
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#bootstrap_token DataTalosMachineConfiguration#bootstrap_token}
|
|
336
336
|
*/
|
|
337
337
|
readonly bootstrapToken: string;
|
|
338
338
|
/**
|
|
339
339
|
* The secretbox encryption secret for the talos kubernetes cluster
|
|
340
340
|
*
|
|
341
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
341
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#secretbox_encryption_secret DataTalosMachineConfiguration#secretbox_encryption_secret}
|
|
342
342
|
*/
|
|
343
343
|
readonly secretboxEncryptionSecret: string;
|
|
344
344
|
}
|
|
@@ -372,7 +372,7 @@ export interface DataTalosMachineConfigurationMachineSecretsTrustdinfo {
|
|
|
372
372
|
/**
|
|
373
373
|
* The trustd token for the talos kubernetes cluster
|
|
374
374
|
*
|
|
375
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
375
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#token DataTalosMachineConfiguration#token}
|
|
376
376
|
*/
|
|
377
377
|
readonly token: string;
|
|
378
378
|
}
|
|
@@ -397,25 +397,25 @@ export interface DataTalosMachineConfigurationMachineSecrets {
|
|
|
397
397
|
/**
|
|
398
398
|
* The certs for the talos kubernetes cluster
|
|
399
399
|
*
|
|
400
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
400
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#certs DataTalosMachineConfiguration#certs}
|
|
401
401
|
*/
|
|
402
402
|
readonly certs: DataTalosMachineConfigurationMachineSecretsCerts;
|
|
403
403
|
/**
|
|
404
404
|
* The cluster secrets
|
|
405
405
|
*
|
|
406
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
406
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#cluster DataTalosMachineConfiguration#cluster}
|
|
407
407
|
*/
|
|
408
408
|
readonly cluster: DataTalosMachineConfigurationMachineSecretsCluster;
|
|
409
409
|
/**
|
|
410
410
|
* The secrets for the talos kubernetes cluster
|
|
411
411
|
*
|
|
412
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
412
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#secrets DataTalosMachineConfiguration#secrets}
|
|
413
413
|
*/
|
|
414
414
|
readonly secrets: DataTalosMachineConfigurationMachineSecretsSecrets;
|
|
415
415
|
/**
|
|
416
416
|
* The trustd info for the talos kubernetes cluster
|
|
417
417
|
*
|
|
418
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
418
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#trustdinfo DataTalosMachineConfiguration#trustdinfo}
|
|
419
419
|
*/
|
|
420
420
|
readonly trustdinfo: DataTalosMachineConfigurationMachineSecretsTrustdinfo;
|
|
421
421
|
}
|
|
@@ -449,7 +449,7 @@ export declare class DataTalosMachineConfigurationMachineSecretsOutputReference
|
|
|
449
449
|
get trustdinfoInput(): any;
|
|
450
450
|
}
|
|
451
451
|
/**
|
|
452
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
452
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration talos_machine_configuration}
|
|
453
453
|
*/
|
|
454
454
|
export declare class DataTalosMachineConfiguration extends cdktf.TerraformDataSource {
|
|
455
455
|
static readonly tfResourceType = "talos_machine_configuration";
|
|
@@ -457,12 +457,12 @@ export declare class DataTalosMachineConfiguration extends cdktf.TerraformDataSo
|
|
|
457
457
|
* Generates CDKTF code for importing a DataTalosMachineConfiguration resource upon running "cdktf plan <stack-name>"
|
|
458
458
|
* @param scope The scope in which to define this construct
|
|
459
459
|
* @param importToId The construct id used in the generated config for the DataTalosMachineConfiguration to import
|
|
460
|
-
* @param importFromId The id of the existing DataTalosMachineConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
460
|
+
* @param importFromId The id of the existing DataTalosMachineConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#import import section} in the documentation of this resource for the id to use
|
|
461
461
|
* @param provider? Optional instance of the provider where the DataTalosMachineConfiguration to import is found
|
|
462
462
|
*/
|
|
463
463
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
464
464
|
/**
|
|
465
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
465
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration talos_machine_configuration} Data Source
|
|
466
466
|
*
|
|
467
467
|
* @param scope The scope in which to define this construct
|
|
468
468
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
1
|
+
// https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function dataTalosMachineConfigurationMachineSecretsCertsEtcdToTerraform(struct) {
|
|
@@ -1155,7 +1155,7 @@ export class DataTalosMachineConfigurationMachineSecretsOutputReference extends
|
|
|
1155
1155
|
}
|
|
1156
1156
|
}
|
|
1157
1157
|
/**
|
|
1158
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
1158
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration talos_machine_configuration}
|
|
1159
1159
|
*/
|
|
1160
1160
|
export class DataTalosMachineConfiguration extends cdktf.TerraformDataSource {
|
|
1161
1161
|
// =================
|
|
@@ -1169,7 +1169,7 @@ export class DataTalosMachineConfiguration extends cdktf.TerraformDataSource {
|
|
|
1169
1169
|
* Generates CDKTF code for importing a DataTalosMachineConfiguration resource upon running "cdktf plan <stack-name>"
|
|
1170
1170
|
* @param scope The scope in which to define this construct
|
|
1171
1171
|
* @param importToId The construct id used in the generated config for the DataTalosMachineConfiguration to import
|
|
1172
|
-
* @param importFromId The id of the existing DataTalosMachineConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
1172
|
+
* @param importFromId The id of the existing DataTalosMachineConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration#import import section} in the documentation of this resource for the id to use
|
|
1173
1173
|
* @param provider? Optional instance of the provider where the DataTalosMachineConfiguration to import is found
|
|
1174
1174
|
*/
|
|
1175
1175
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -1179,7 +1179,7 @@ export class DataTalosMachineConfiguration extends cdktf.TerraformDataSource {
|
|
|
1179
1179
|
// INITIALIZER
|
|
1180
1180
|
// ===========
|
|
1181
1181
|
/**
|
|
1182
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
1182
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_configuration talos_machine_configuration} Data Source
|
|
1183
1183
|
*
|
|
1184
1184
|
* @param scope The scope in which to define this construct
|
|
1185
1185
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -1190,8 +1190,8 @@ export class DataTalosMachineConfiguration extends cdktf.TerraformDataSource {
|
|
|
1190
1190
|
terraformResourceType: 'talos_machine_configuration',
|
|
1191
1191
|
terraformGeneratorMetadata: {
|
|
1192
1192
|
providerName: 'talos',
|
|
1193
|
-
providerVersion: '0.
|
|
1194
|
-
providerVersionConstraint: '0.
|
|
1193
|
+
providerVersion: '0.10.0',
|
|
1194
|
+
providerVersionConstraint: '0.10.0'
|
|
1195
1195
|
},
|
|
1196
1196
|
provider: config.provider,
|
|
1197
1197
|
dependsOn: config.dependsOn,
|
|
@@ -4,19 +4,19 @@ export interface DataTalosMachineDisksConfig extends cdktf.TerraformMetaArgument
|
|
|
4
4
|
/**
|
|
5
5
|
* The client configuration data
|
|
6
6
|
*
|
|
7
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#client_configuration DataTalosMachineDisks#client_configuration}
|
|
8
8
|
*/
|
|
9
9
|
readonly clientConfiguration: DataTalosMachineDisksClientConfiguration;
|
|
10
10
|
/**
|
|
11
11
|
* endpoint to use for the talosclient. If not set, the node value will be used
|
|
12
12
|
*
|
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#endpoint DataTalosMachineDisks#endpoint}
|
|
14
14
|
*/
|
|
15
15
|
readonly endpoint?: string;
|
|
16
16
|
/**
|
|
17
17
|
* controlplane node to retrieve the kubeconfig from
|
|
18
18
|
*
|
|
19
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
19
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#node DataTalosMachineDisks#node}
|
|
20
20
|
*/
|
|
21
21
|
readonly nodeAttribute: string;
|
|
22
22
|
/**
|
|
@@ -24,11 +24,11 @@ export interface DataTalosMachineDisksConfig extends cdktf.TerraformMetaArgument
|
|
|
24
24
|
* If not set, all disks will be returned.
|
|
25
25
|
* See [CEL documentation](https://www.talos.dev/latest/talos-guides/configuration/disk-management/#disk-selector).
|
|
26
26
|
*
|
|
27
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
27
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#selector DataTalosMachineDisks#selector}
|
|
28
28
|
*/
|
|
29
29
|
readonly selector?: string;
|
|
30
30
|
/**
|
|
31
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
31
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#timeouts DataTalosMachineDisks#timeouts}
|
|
32
32
|
*/
|
|
33
33
|
readonly timeouts?: DataTalosMachineDisksTimeouts;
|
|
34
34
|
}
|
|
@@ -36,19 +36,19 @@ export interface DataTalosMachineDisksClientConfiguration {
|
|
|
36
36
|
/**
|
|
37
37
|
* The client CA certificate
|
|
38
38
|
*
|
|
39
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
39
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#ca_certificate DataTalosMachineDisks#ca_certificate}
|
|
40
40
|
*/
|
|
41
41
|
readonly caCertificate: string;
|
|
42
42
|
/**
|
|
43
43
|
* The client certificate
|
|
44
44
|
*
|
|
45
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
45
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#client_certificate DataTalosMachineDisks#client_certificate}
|
|
46
46
|
*/
|
|
47
47
|
readonly clientCertificate: string;
|
|
48
48
|
/**
|
|
49
49
|
* The client key
|
|
50
50
|
*
|
|
51
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
51
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#client_key DataTalosMachineDisks#client_key}
|
|
52
52
|
*/
|
|
53
53
|
readonly clientKey: string;
|
|
54
54
|
}
|
|
@@ -130,7 +130,7 @@ export interface DataTalosMachineDisksTimeouts {
|
|
|
130
130
|
/**
|
|
131
131
|
* 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.
|
|
132
132
|
*
|
|
133
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#read DataTalosMachineDisks#read}
|
|
134
134
|
*/
|
|
135
135
|
readonly read?: string;
|
|
136
136
|
}
|
|
@@ -153,7 +153,7 @@ export declare class DataTalosMachineDisksTimeoutsOutputReference extends cdktf.
|
|
|
153
153
|
get readInput(): string;
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
156
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks talos_machine_disks}
|
|
157
157
|
*/
|
|
158
158
|
export declare class DataTalosMachineDisks extends cdktf.TerraformDataSource {
|
|
159
159
|
static readonly tfResourceType = "talos_machine_disks";
|
|
@@ -161,12 +161,12 @@ export declare class DataTalosMachineDisks extends cdktf.TerraformDataSource {
|
|
|
161
161
|
* Generates CDKTF code for importing a DataTalosMachineDisks resource upon running "cdktf plan <stack-name>"
|
|
162
162
|
* @param scope The scope in which to define this construct
|
|
163
163
|
* @param importToId The construct id used in the generated config for the DataTalosMachineDisks to import
|
|
164
|
-
* @param importFromId The id of the existing DataTalosMachineDisks that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
164
|
+
* @param importFromId The id of the existing DataTalosMachineDisks that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#import import section} in the documentation of this resource for the id to use
|
|
165
165
|
* @param provider? Optional instance of the provider where the DataTalosMachineDisks to import is found
|
|
166
166
|
*/
|
|
167
167
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
168
168
|
/**
|
|
169
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
169
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks talos_machine_disks} Data Source
|
|
170
170
|
*
|
|
171
171
|
* @param scope The scope in which to define this construct
|
|
172
172
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
1
|
+
// https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function dataTalosMachineDisksClientConfigurationToTerraform(struct) {
|
|
@@ -353,7 +353,7 @@ export class DataTalosMachineDisksTimeoutsOutputReference extends cdktf.ComplexO
|
|
|
353
353
|
}
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
356
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
356
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks talos_machine_disks}
|
|
357
357
|
*/
|
|
358
358
|
export class DataTalosMachineDisks extends cdktf.TerraformDataSource {
|
|
359
359
|
// =================
|
|
@@ -367,7 +367,7 @@ export class DataTalosMachineDisks extends cdktf.TerraformDataSource {
|
|
|
367
367
|
* Generates CDKTF code for importing a DataTalosMachineDisks resource upon running "cdktf plan <stack-name>"
|
|
368
368
|
* @param scope The scope in which to define this construct
|
|
369
369
|
* @param importToId The construct id used in the generated config for the DataTalosMachineDisks to import
|
|
370
|
-
* @param importFromId The id of the existing DataTalosMachineDisks that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
370
|
+
* @param importFromId The id of the existing DataTalosMachineDisks that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks#import import section} in the documentation of this resource for the id to use
|
|
371
371
|
* @param provider? Optional instance of the provider where the DataTalosMachineDisks to import is found
|
|
372
372
|
*/
|
|
373
373
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -377,7 +377,7 @@ export class DataTalosMachineDisks extends cdktf.TerraformDataSource {
|
|
|
377
377
|
// INITIALIZER
|
|
378
378
|
// ===========
|
|
379
379
|
/**
|
|
380
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
380
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/machine_disks talos_machine_disks} Data Source
|
|
381
381
|
*
|
|
382
382
|
* @param scope The scope in which to define this construct
|
|
383
383
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -388,8 +388,8 @@ export class DataTalosMachineDisks extends cdktf.TerraformDataSource {
|
|
|
388
388
|
terraformResourceType: 'talos_machine_disks',
|
|
389
389
|
terraformGeneratorMetadata: {
|
|
390
390
|
providerName: 'talos',
|
|
391
|
-
providerVersion: '0.
|
|
392
|
-
providerVersionConstraint: '0.
|
|
391
|
+
providerVersion: '0.10.0',
|
|
392
|
+
providerVersionConstraint: '0.10.0'
|
|
393
393
|
},
|
|
394
394
|
provider: config.provider,
|
|
395
395
|
dependsOn: config.dependsOn,
|
|
@@ -10,12 +10,12 @@ export interface ImageFactorySchematicConfig extends cdktf.TerraformMetaArgument
|
|
|
10
10
|
* > Refer to [image-factory](https://github.com/siderolabs/image-factory?tab=readme-ov-file#post-schematics) for the schema.
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic#schematic ImageFactorySchematic#schematic}
|
|
14
14
|
*/
|
|
15
15
|
readonly schematic?: string;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
18
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic talos_image_factory_schematic}
|
|
19
19
|
*/
|
|
20
20
|
export declare class ImageFactorySchematic extends cdktf.TerraformResource {
|
|
21
21
|
static readonly tfResourceType = "talos_image_factory_schematic";
|
|
@@ -23,12 +23,12 @@ export declare class ImageFactorySchematic extends cdktf.TerraformResource {
|
|
|
23
23
|
* Generates CDKTF code for importing a ImageFactorySchematic resource upon running "cdktf plan <stack-name>"
|
|
24
24
|
* @param scope The scope in which to define this construct
|
|
25
25
|
* @param importToId The construct id used in the generated config for the ImageFactorySchematic to import
|
|
26
|
-
* @param importFromId The id of the existing ImageFactorySchematic that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
26
|
+
* @param importFromId The id of the existing ImageFactorySchematic that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic#import import section} in the documentation of this resource for the id to use
|
|
27
27
|
* @param provider? Optional instance of the provider where the ImageFactorySchematic to import is found
|
|
28
28
|
*/
|
|
29
29
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
30
30
|
/**
|
|
31
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
31
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic talos_image_factory_schematic} Resource
|
|
32
32
|
*
|
|
33
33
|
* @param scope The scope in which to define this construct
|
|
34
34
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
1
|
+
// https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
/**
|
|
5
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
5
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic talos_image_factory_schematic}
|
|
6
6
|
*/
|
|
7
7
|
export class ImageFactorySchematic extends cdktf.TerraformResource {
|
|
8
8
|
// =================
|
|
@@ -16,7 +16,7 @@ export class ImageFactorySchematic extends cdktf.TerraformResource {
|
|
|
16
16
|
* Generates CDKTF code for importing a ImageFactorySchematic resource upon running "cdktf plan <stack-name>"
|
|
17
17
|
* @param scope The scope in which to define this construct
|
|
18
18
|
* @param importToId The construct id used in the generated config for the ImageFactorySchematic to import
|
|
19
|
-
* @param importFromId The id of the existing ImageFactorySchematic that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
19
|
+
* @param importFromId The id of the existing ImageFactorySchematic that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic#import import section} in the documentation of this resource for the id to use
|
|
20
20
|
* @param provider? Optional instance of the provider where the ImageFactorySchematic to import is found
|
|
21
21
|
*/
|
|
22
22
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -26,7 +26,7 @@ export class ImageFactorySchematic extends cdktf.TerraformResource {
|
|
|
26
26
|
// INITIALIZER
|
|
27
27
|
// ===========
|
|
28
28
|
/**
|
|
29
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
29
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/image_factory_schematic talos_image_factory_schematic} Resource
|
|
30
30
|
*
|
|
31
31
|
* @param scope The scope in which to define this construct
|
|
32
32
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -37,8 +37,8 @@ export class ImageFactorySchematic extends cdktf.TerraformResource {
|
|
|
37
37
|
terraformResourceType: 'talos_image_factory_schematic',
|
|
38
38
|
terraformGeneratorMetadata: {
|
|
39
39
|
providerName: 'talos',
|
|
40
|
-
providerVersion: '0.
|
|
41
|
-
providerVersionConstraint: '0.
|
|
40
|
+
providerVersion: '0.10.0',
|
|
41
|
+
providerVersionConstraint: '0.10.0'
|
|
42
42
|
},
|
|
43
43
|
provider: config.provider,
|
|
44
44
|
dependsOn: config.dependsOn,
|