@cdktf-providers/siderolabs-talos 0.9.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/LICENSE +355 -0
- package/README.md +19 -0
- package/dist/cluster-kubeconfig/index.d.ts +187 -0
- package/dist/cluster-kubeconfig/index.js +489 -0
- package/dist/data-talos-client-configuration/index.d.ts +121 -0
- package/dist/data-talos-client-configuration/index.js +292 -0
- package/dist/data-talos-cluster-health/index.d.ts +165 -0
- package/dist/data-talos-cluster-health/index.js +414 -0
- package/dist/data-talos-cluster-kubeconfig/index.d.ts +176 -0
- package/dist/data-talos-cluster-kubeconfig/index.js +461 -0
- package/dist/data-talos-image-factory-extensions-versions/index.d.ts +118 -0
- package/dist/data-talos-image-factory-extensions-versions/index.js +289 -0
- package/dist/data-talos-image-factory-overlays-versions/index.d.ts +117 -0
- package/dist/data-talos-image-factory-overlays-versions/index.js +285 -0
- package/dist/data-talos-image-factory-urls/index.d.ts +163 -0
- package/dist/data-talos-image-factory-urls/index.js +272 -0
- package/dist/data-talos-image-factory-versions/index.d.ts +71 -0
- package/dist/data-talos-image-factory-versions/index.js +182 -0
- package/dist/data-talos-machine-configuration/index.d.ts +521 -0
- package/dist/data-talos-machine-configuration/index.js +1424 -0
- package/dist/data-talos-machine-disks/index.d.ts +208 -0
- package/dist/data-talos-machine-disks/index.js +537 -0
- package/dist/image-factory-schematic/index.d.ts +50 -0
- package/dist/image-factory-schematic/index.js +95 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +16 -0
- package/dist/lazy-index.d.ts +0 -0
- package/dist/lazy-index.js +16 -0
- package/dist/machine-bootstrap/index.d.ts +144 -0
- package/dist/machine-bootstrap/index.js +371 -0
- package/dist/machine-configuration-apply/index.d.ts +262 -0
- package/dist/machine-configuration-apply/index.js +659 -0
- package/dist/machine-secrets/index.d.ts +238 -0
- package/dist/machine-secrets/index.js +684 -0
- package/dist/provider/index.d.ts +54 -0
- package/dist/provider/index.js +108 -0
- package/package.json +51 -0
|
@@ -0,0 +1,521 @@
|
|
|
1
|
+
import { Construct } from 'constructs';
|
|
2
|
+
import * as cdktf from 'cdktf';
|
|
3
|
+
export interface DataTalosMachineConfigurationConfig extends cdktf.TerraformMetaArguments {
|
|
4
|
+
/**
|
|
5
|
+
* The endpoint of the talos kubernetes cluster
|
|
6
|
+
*
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cluster_endpoint DataTalosMachineConfiguration#cluster_endpoint}
|
|
8
|
+
*/
|
|
9
|
+
readonly clusterEndpoint: string;
|
|
10
|
+
/**
|
|
11
|
+
* The name of the talos kubernetes cluster
|
|
12
|
+
*
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cluster_name DataTalosMachineConfiguration#cluster_name}
|
|
14
|
+
*/
|
|
15
|
+
readonly clusterName: string;
|
|
16
|
+
/**
|
|
17
|
+
* The list of config patches to apply to the generated configuration
|
|
18
|
+
*
|
|
19
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#config_patches DataTalosMachineConfiguration#config_patches}
|
|
20
|
+
*/
|
|
21
|
+
readonly configPatches?: string[];
|
|
22
|
+
/**
|
|
23
|
+
* Whether to generate documentation for the generated configuration. Defaults to false
|
|
24
|
+
*
|
|
25
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#docs DataTalosMachineConfiguration#docs}
|
|
26
|
+
*/
|
|
27
|
+
readonly docs?: boolean | cdktf.IResolvable;
|
|
28
|
+
/**
|
|
29
|
+
* Whether to generate examples for the generated configuration. Defaults to false
|
|
30
|
+
*
|
|
31
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#examples DataTalosMachineConfiguration#examples}
|
|
32
|
+
*/
|
|
33
|
+
readonly examples?: boolean | cdktf.IResolvable;
|
|
34
|
+
/**
|
|
35
|
+
* The version of kubernetes to use
|
|
36
|
+
*
|
|
37
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#kubernetes_version DataTalosMachineConfiguration#kubernetes_version}
|
|
38
|
+
*/
|
|
39
|
+
readonly kubernetesVersion?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The secrets for the talos cluster
|
|
42
|
+
*
|
|
43
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#machine_secrets DataTalosMachineConfiguration#machine_secrets}
|
|
44
|
+
*/
|
|
45
|
+
readonly machineSecrets: DataTalosMachineConfigurationMachineSecrets;
|
|
46
|
+
/**
|
|
47
|
+
* The type of machine to generate the configuration for
|
|
48
|
+
*
|
|
49
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#machine_type DataTalosMachineConfiguration#machine_type}
|
|
50
|
+
*/
|
|
51
|
+
readonly machineType: string;
|
|
52
|
+
/**
|
|
53
|
+
* The version of talos features to use in generated machine configuration
|
|
54
|
+
*
|
|
55
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#talos_version DataTalosMachineConfiguration#talos_version}
|
|
56
|
+
*/
|
|
57
|
+
readonly talosVersion?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface DataTalosMachineConfigurationMachineSecretsCertsEtcd {
|
|
60
|
+
/**
|
|
61
|
+
* certificate data
|
|
62
|
+
*
|
|
63
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
64
|
+
*/
|
|
65
|
+
readonly cert: string;
|
|
66
|
+
/**
|
|
67
|
+
* key data
|
|
68
|
+
*
|
|
69
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
70
|
+
*/
|
|
71
|
+
readonly key: string;
|
|
72
|
+
}
|
|
73
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsEtcdToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsEtcd | cdktf.IResolvable): any;
|
|
74
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsEtcdToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsEtcd | cdktf.IResolvable): any;
|
|
75
|
+
export declare class DataTalosMachineConfigurationMachineSecretsCertsEtcdOutputReference extends cdktf.ComplexObject {
|
|
76
|
+
private isEmptyObject;
|
|
77
|
+
private resolvableValue?;
|
|
78
|
+
/**
|
|
79
|
+
* @param terraformResource The parent resource
|
|
80
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
81
|
+
*/
|
|
82
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
83
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCertsEtcd | cdktf.IResolvable | undefined;
|
|
84
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCertsEtcd | cdktf.IResolvable | undefined);
|
|
85
|
+
private _cert?;
|
|
86
|
+
get cert(): string;
|
|
87
|
+
set cert(value: string);
|
|
88
|
+
get certInput(): string;
|
|
89
|
+
private _key?;
|
|
90
|
+
get key(): string;
|
|
91
|
+
set key(value: string);
|
|
92
|
+
get keyInput(): string;
|
|
93
|
+
}
|
|
94
|
+
export interface DataTalosMachineConfigurationMachineSecretsCertsK8S {
|
|
95
|
+
/**
|
|
96
|
+
* certificate data
|
|
97
|
+
*
|
|
98
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
99
|
+
*/
|
|
100
|
+
readonly cert: string;
|
|
101
|
+
/**
|
|
102
|
+
* key data
|
|
103
|
+
*
|
|
104
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
105
|
+
*/
|
|
106
|
+
readonly key: string;
|
|
107
|
+
}
|
|
108
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsK8SToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsK8S | cdktf.IResolvable): any;
|
|
109
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsK8SToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsK8S | cdktf.IResolvable): any;
|
|
110
|
+
export declare class DataTalosMachineConfigurationMachineSecretsCertsK8SOutputReference extends cdktf.ComplexObject {
|
|
111
|
+
private isEmptyObject;
|
|
112
|
+
private resolvableValue?;
|
|
113
|
+
/**
|
|
114
|
+
* @param terraformResource The parent resource
|
|
115
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
116
|
+
*/
|
|
117
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
118
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCertsK8S | cdktf.IResolvable | undefined;
|
|
119
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCertsK8S | cdktf.IResolvable | undefined);
|
|
120
|
+
private _cert?;
|
|
121
|
+
get cert(): string;
|
|
122
|
+
set cert(value: string);
|
|
123
|
+
get certInput(): string;
|
|
124
|
+
private _key?;
|
|
125
|
+
get key(): string;
|
|
126
|
+
set key(value: string);
|
|
127
|
+
get keyInput(): string;
|
|
128
|
+
}
|
|
129
|
+
export interface DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator {
|
|
130
|
+
/**
|
|
131
|
+
* certificate data
|
|
132
|
+
*
|
|
133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
134
|
+
*/
|
|
135
|
+
readonly cert: string;
|
|
136
|
+
/**
|
|
137
|
+
* key data
|
|
138
|
+
*
|
|
139
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
140
|
+
*/
|
|
141
|
+
readonly key: string;
|
|
142
|
+
}
|
|
143
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsK8SAggregatorToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator | cdktf.IResolvable): any;
|
|
144
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsK8SAggregatorToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator | cdktf.IResolvable): any;
|
|
145
|
+
export declare class DataTalosMachineConfigurationMachineSecretsCertsK8SAggregatorOutputReference extends cdktf.ComplexObject {
|
|
146
|
+
private isEmptyObject;
|
|
147
|
+
private resolvableValue?;
|
|
148
|
+
/**
|
|
149
|
+
* @param terraformResource The parent resource
|
|
150
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
151
|
+
*/
|
|
152
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
153
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator | cdktf.IResolvable | undefined;
|
|
154
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator | cdktf.IResolvable | undefined);
|
|
155
|
+
private _cert?;
|
|
156
|
+
get cert(): string;
|
|
157
|
+
set cert(value: string);
|
|
158
|
+
get certInput(): string;
|
|
159
|
+
private _key?;
|
|
160
|
+
get key(): string;
|
|
161
|
+
set key(value: string);
|
|
162
|
+
get keyInput(): string;
|
|
163
|
+
}
|
|
164
|
+
export interface DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount {
|
|
165
|
+
/**
|
|
166
|
+
* The key for the k8s service account
|
|
167
|
+
*
|
|
168
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
169
|
+
*/
|
|
170
|
+
readonly key: string;
|
|
171
|
+
}
|
|
172
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccountToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount | cdktf.IResolvable): any;
|
|
173
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccountToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount | cdktf.IResolvable): any;
|
|
174
|
+
export declare class DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccountOutputReference extends cdktf.ComplexObject {
|
|
175
|
+
private isEmptyObject;
|
|
176
|
+
private resolvableValue?;
|
|
177
|
+
/**
|
|
178
|
+
* @param terraformResource The parent resource
|
|
179
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
180
|
+
*/
|
|
181
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
182
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount | cdktf.IResolvable | undefined;
|
|
183
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount | cdktf.IResolvable | undefined);
|
|
184
|
+
private _key?;
|
|
185
|
+
get key(): string;
|
|
186
|
+
set key(value: string);
|
|
187
|
+
get keyInput(): string;
|
|
188
|
+
}
|
|
189
|
+
export interface DataTalosMachineConfigurationMachineSecretsCertsOs {
|
|
190
|
+
/**
|
|
191
|
+
* certificate data
|
|
192
|
+
*
|
|
193
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cert DataTalosMachineConfiguration#cert}
|
|
194
|
+
*/
|
|
195
|
+
readonly cert: string;
|
|
196
|
+
/**
|
|
197
|
+
* key data
|
|
198
|
+
*
|
|
199
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#key DataTalosMachineConfiguration#key}
|
|
200
|
+
*/
|
|
201
|
+
readonly key: string;
|
|
202
|
+
}
|
|
203
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsOsToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsOs | cdktf.IResolvable): any;
|
|
204
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsOsToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCertsOs | cdktf.IResolvable): any;
|
|
205
|
+
export declare class DataTalosMachineConfigurationMachineSecretsCertsOsOutputReference extends cdktf.ComplexObject {
|
|
206
|
+
private isEmptyObject;
|
|
207
|
+
private resolvableValue?;
|
|
208
|
+
/**
|
|
209
|
+
* @param terraformResource The parent resource
|
|
210
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
211
|
+
*/
|
|
212
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
213
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCertsOs | cdktf.IResolvable | undefined;
|
|
214
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCertsOs | cdktf.IResolvable | undefined);
|
|
215
|
+
private _cert?;
|
|
216
|
+
get cert(): string;
|
|
217
|
+
set cert(value: string);
|
|
218
|
+
get certInput(): string;
|
|
219
|
+
private _key?;
|
|
220
|
+
get key(): string;
|
|
221
|
+
set key(value: string);
|
|
222
|
+
get keyInput(): string;
|
|
223
|
+
}
|
|
224
|
+
export interface DataTalosMachineConfigurationMachineSecretsCerts {
|
|
225
|
+
/**
|
|
226
|
+
* The certificate and key pair
|
|
227
|
+
*
|
|
228
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#etcd DataTalosMachineConfiguration#etcd}
|
|
229
|
+
*/
|
|
230
|
+
readonly etcd: DataTalosMachineConfigurationMachineSecretsCertsEtcd;
|
|
231
|
+
/**
|
|
232
|
+
* The certificate and key pair
|
|
233
|
+
*
|
|
234
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#k8s DataTalosMachineConfiguration#k8s}
|
|
235
|
+
*/
|
|
236
|
+
readonly k8S: DataTalosMachineConfigurationMachineSecretsCertsK8S;
|
|
237
|
+
/**
|
|
238
|
+
* The certificate and key pair
|
|
239
|
+
*
|
|
240
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#k8s_aggregator DataTalosMachineConfiguration#k8s_aggregator}
|
|
241
|
+
*/
|
|
242
|
+
readonly k8SAggregator: DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator;
|
|
243
|
+
/**
|
|
244
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#k8s_serviceaccount DataTalosMachineConfiguration#k8s_serviceaccount}
|
|
245
|
+
*/
|
|
246
|
+
readonly k8SServiceaccount: DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount;
|
|
247
|
+
/**
|
|
248
|
+
* The certificate and key pair
|
|
249
|
+
*
|
|
250
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#os DataTalosMachineConfiguration#os}
|
|
251
|
+
*/
|
|
252
|
+
readonly os: DataTalosMachineConfigurationMachineSecretsCertsOs;
|
|
253
|
+
}
|
|
254
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCerts | cdktf.IResolvable): any;
|
|
255
|
+
export declare function dataTalosMachineConfigurationMachineSecretsCertsToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCerts | cdktf.IResolvable): any;
|
|
256
|
+
export declare class DataTalosMachineConfigurationMachineSecretsCertsOutputReference extends cdktf.ComplexObject {
|
|
257
|
+
private isEmptyObject;
|
|
258
|
+
private resolvableValue?;
|
|
259
|
+
/**
|
|
260
|
+
* @param terraformResource The parent resource
|
|
261
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
262
|
+
*/
|
|
263
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
264
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCerts | cdktf.IResolvable | undefined;
|
|
265
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCerts | cdktf.IResolvable | undefined);
|
|
266
|
+
private _etcd;
|
|
267
|
+
get etcd(): DataTalosMachineConfigurationMachineSecretsCertsEtcdOutputReference;
|
|
268
|
+
putEtcd(value: DataTalosMachineConfigurationMachineSecretsCertsEtcd): void;
|
|
269
|
+
get etcdInput(): any;
|
|
270
|
+
private _k8S;
|
|
271
|
+
get k8S(): DataTalosMachineConfigurationMachineSecretsCertsK8SOutputReference;
|
|
272
|
+
putK8S(value: DataTalosMachineConfigurationMachineSecretsCertsK8S): void;
|
|
273
|
+
get k8SInput(): any;
|
|
274
|
+
private _k8SAggregator;
|
|
275
|
+
get k8SAggregator(): DataTalosMachineConfigurationMachineSecretsCertsK8SAggregatorOutputReference;
|
|
276
|
+
putK8SAggregator(value: DataTalosMachineConfigurationMachineSecretsCertsK8SAggregator): void;
|
|
277
|
+
get k8SAggregatorInput(): any;
|
|
278
|
+
private _k8SServiceaccount;
|
|
279
|
+
get k8SServiceaccount(): DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccountOutputReference;
|
|
280
|
+
putK8SServiceaccount(value: DataTalosMachineConfigurationMachineSecretsCertsK8SServiceaccount): void;
|
|
281
|
+
get k8SServiceaccountInput(): any;
|
|
282
|
+
private _os;
|
|
283
|
+
get os(): DataTalosMachineConfigurationMachineSecretsCertsOsOutputReference;
|
|
284
|
+
putOs(value: DataTalosMachineConfigurationMachineSecretsCertsOs): void;
|
|
285
|
+
get osInput(): any;
|
|
286
|
+
}
|
|
287
|
+
export interface DataTalosMachineConfigurationMachineSecretsCluster {
|
|
288
|
+
/**
|
|
289
|
+
* The cluster id
|
|
290
|
+
*
|
|
291
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#id DataTalosMachineConfiguration#id}
|
|
292
|
+
*
|
|
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
|
+
* 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.
|
|
295
|
+
*/
|
|
296
|
+
readonly id: string;
|
|
297
|
+
/**
|
|
298
|
+
* The cluster secret
|
|
299
|
+
*
|
|
300
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#secret DataTalosMachineConfiguration#secret}
|
|
301
|
+
*/
|
|
302
|
+
readonly secret: string;
|
|
303
|
+
}
|
|
304
|
+
export declare function dataTalosMachineConfigurationMachineSecretsClusterToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCluster | cdktf.IResolvable): any;
|
|
305
|
+
export declare function dataTalosMachineConfigurationMachineSecretsClusterToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsCluster | cdktf.IResolvable): any;
|
|
306
|
+
export declare class DataTalosMachineConfigurationMachineSecretsClusterOutputReference extends cdktf.ComplexObject {
|
|
307
|
+
private isEmptyObject;
|
|
308
|
+
private resolvableValue?;
|
|
309
|
+
/**
|
|
310
|
+
* @param terraformResource The parent resource
|
|
311
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
312
|
+
*/
|
|
313
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
314
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsCluster | cdktf.IResolvable | undefined;
|
|
315
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsCluster | cdktf.IResolvable | undefined);
|
|
316
|
+
private _id?;
|
|
317
|
+
get id(): string;
|
|
318
|
+
set id(value: string);
|
|
319
|
+
get idInput(): string;
|
|
320
|
+
private _secret?;
|
|
321
|
+
get secret(): string;
|
|
322
|
+
set secret(value: string);
|
|
323
|
+
get secretInput(): string;
|
|
324
|
+
}
|
|
325
|
+
export interface DataTalosMachineConfigurationMachineSecretsSecrets {
|
|
326
|
+
/**
|
|
327
|
+
* The aescbc encryption secret for the talos kubernetes cluster
|
|
328
|
+
*
|
|
329
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#aescbc_encryption_secret DataTalosMachineConfiguration#aescbc_encryption_secret}
|
|
330
|
+
*/
|
|
331
|
+
readonly aescbcEncryptionSecret?: string;
|
|
332
|
+
/**
|
|
333
|
+
* The bootstrap token for the talos kubernetes cluster
|
|
334
|
+
*
|
|
335
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#bootstrap_token DataTalosMachineConfiguration#bootstrap_token}
|
|
336
|
+
*/
|
|
337
|
+
readonly bootstrapToken: string;
|
|
338
|
+
/**
|
|
339
|
+
* The secretbox encryption secret for the talos kubernetes cluster
|
|
340
|
+
*
|
|
341
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#secretbox_encryption_secret DataTalosMachineConfiguration#secretbox_encryption_secret}
|
|
342
|
+
*/
|
|
343
|
+
readonly secretboxEncryptionSecret: string;
|
|
344
|
+
}
|
|
345
|
+
export declare function dataTalosMachineConfigurationMachineSecretsSecretsToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsSecrets | cdktf.IResolvable): any;
|
|
346
|
+
export declare function dataTalosMachineConfigurationMachineSecretsSecretsToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsSecrets | cdktf.IResolvable): any;
|
|
347
|
+
export declare class DataTalosMachineConfigurationMachineSecretsSecretsOutputReference extends cdktf.ComplexObject {
|
|
348
|
+
private isEmptyObject;
|
|
349
|
+
private resolvableValue?;
|
|
350
|
+
/**
|
|
351
|
+
* @param terraformResource The parent resource
|
|
352
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
353
|
+
*/
|
|
354
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
355
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsSecrets | cdktf.IResolvable | undefined;
|
|
356
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsSecrets | cdktf.IResolvable | undefined);
|
|
357
|
+
private _aescbcEncryptionSecret?;
|
|
358
|
+
get aescbcEncryptionSecret(): string;
|
|
359
|
+
set aescbcEncryptionSecret(value: string);
|
|
360
|
+
resetAescbcEncryptionSecret(): void;
|
|
361
|
+
get aescbcEncryptionSecretInput(): string;
|
|
362
|
+
private _bootstrapToken?;
|
|
363
|
+
get bootstrapToken(): string;
|
|
364
|
+
set bootstrapToken(value: string);
|
|
365
|
+
get bootstrapTokenInput(): string;
|
|
366
|
+
private _secretboxEncryptionSecret?;
|
|
367
|
+
get secretboxEncryptionSecret(): string;
|
|
368
|
+
set secretboxEncryptionSecret(value: string);
|
|
369
|
+
get secretboxEncryptionSecretInput(): string;
|
|
370
|
+
}
|
|
371
|
+
export interface DataTalosMachineConfigurationMachineSecretsTrustdinfo {
|
|
372
|
+
/**
|
|
373
|
+
* The trustd token for the talos kubernetes cluster
|
|
374
|
+
*
|
|
375
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#token DataTalosMachineConfiguration#token}
|
|
376
|
+
*/
|
|
377
|
+
readonly token: string;
|
|
378
|
+
}
|
|
379
|
+
export declare function dataTalosMachineConfigurationMachineSecretsTrustdinfoToTerraform(struct?: DataTalosMachineConfigurationMachineSecretsTrustdinfo | cdktf.IResolvable): any;
|
|
380
|
+
export declare function dataTalosMachineConfigurationMachineSecretsTrustdinfoToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecretsTrustdinfo | cdktf.IResolvable): any;
|
|
381
|
+
export declare class DataTalosMachineConfigurationMachineSecretsTrustdinfoOutputReference extends cdktf.ComplexObject {
|
|
382
|
+
private isEmptyObject;
|
|
383
|
+
private resolvableValue?;
|
|
384
|
+
/**
|
|
385
|
+
* @param terraformResource The parent resource
|
|
386
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
387
|
+
*/
|
|
388
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
389
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecretsTrustdinfo | cdktf.IResolvable | undefined;
|
|
390
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecretsTrustdinfo | cdktf.IResolvable | undefined);
|
|
391
|
+
private _token?;
|
|
392
|
+
get token(): string;
|
|
393
|
+
set token(value: string);
|
|
394
|
+
get tokenInput(): string;
|
|
395
|
+
}
|
|
396
|
+
export interface DataTalosMachineConfigurationMachineSecrets {
|
|
397
|
+
/**
|
|
398
|
+
* The certs for the talos kubernetes cluster
|
|
399
|
+
*
|
|
400
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#certs DataTalosMachineConfiguration#certs}
|
|
401
|
+
*/
|
|
402
|
+
readonly certs: DataTalosMachineConfigurationMachineSecretsCerts;
|
|
403
|
+
/**
|
|
404
|
+
* The cluster secrets
|
|
405
|
+
*
|
|
406
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#cluster DataTalosMachineConfiguration#cluster}
|
|
407
|
+
*/
|
|
408
|
+
readonly cluster: DataTalosMachineConfigurationMachineSecretsCluster;
|
|
409
|
+
/**
|
|
410
|
+
* The secrets for the talos kubernetes cluster
|
|
411
|
+
*
|
|
412
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#secrets DataTalosMachineConfiguration#secrets}
|
|
413
|
+
*/
|
|
414
|
+
readonly secrets: DataTalosMachineConfigurationMachineSecretsSecrets;
|
|
415
|
+
/**
|
|
416
|
+
* The trustd info for the talos kubernetes cluster
|
|
417
|
+
*
|
|
418
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration#trustdinfo DataTalosMachineConfiguration#trustdinfo}
|
|
419
|
+
*/
|
|
420
|
+
readonly trustdinfo: DataTalosMachineConfigurationMachineSecretsTrustdinfo;
|
|
421
|
+
}
|
|
422
|
+
export declare function dataTalosMachineConfigurationMachineSecretsToTerraform(struct?: DataTalosMachineConfigurationMachineSecrets | cdktf.IResolvable): any;
|
|
423
|
+
export declare function dataTalosMachineConfigurationMachineSecretsToHclTerraform(struct?: DataTalosMachineConfigurationMachineSecrets | cdktf.IResolvable): any;
|
|
424
|
+
export declare class DataTalosMachineConfigurationMachineSecretsOutputReference extends cdktf.ComplexObject {
|
|
425
|
+
private isEmptyObject;
|
|
426
|
+
private resolvableValue?;
|
|
427
|
+
/**
|
|
428
|
+
* @param terraformResource The parent resource
|
|
429
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
430
|
+
*/
|
|
431
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
|
|
432
|
+
get internalValue(): DataTalosMachineConfigurationMachineSecrets | cdktf.IResolvable | undefined;
|
|
433
|
+
set internalValue(value: DataTalosMachineConfigurationMachineSecrets | cdktf.IResolvable | undefined);
|
|
434
|
+
private _certs;
|
|
435
|
+
get certs(): DataTalosMachineConfigurationMachineSecretsCertsOutputReference;
|
|
436
|
+
putCerts(value: DataTalosMachineConfigurationMachineSecretsCerts): void;
|
|
437
|
+
get certsInput(): any;
|
|
438
|
+
private _cluster;
|
|
439
|
+
get cluster(): DataTalosMachineConfigurationMachineSecretsClusterOutputReference;
|
|
440
|
+
putCluster(value: DataTalosMachineConfigurationMachineSecretsCluster): void;
|
|
441
|
+
get clusterInput(): any;
|
|
442
|
+
private _secrets;
|
|
443
|
+
get secrets(): DataTalosMachineConfigurationMachineSecretsSecretsOutputReference;
|
|
444
|
+
putSecrets(value: DataTalosMachineConfigurationMachineSecretsSecrets): void;
|
|
445
|
+
get secretsInput(): any;
|
|
446
|
+
private _trustdinfo;
|
|
447
|
+
get trustdinfo(): DataTalosMachineConfigurationMachineSecretsTrustdinfoOutputReference;
|
|
448
|
+
putTrustdinfo(value: DataTalosMachineConfigurationMachineSecretsTrustdinfo): void;
|
|
449
|
+
get trustdinfoInput(): any;
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration talos_machine_configuration}
|
|
453
|
+
*/
|
|
454
|
+
export declare class DataTalosMachineConfiguration extends cdktf.TerraformDataSource {
|
|
455
|
+
static readonly tfResourceType = "talos_machine_configuration";
|
|
456
|
+
/**
|
|
457
|
+
* Generates CDKTF code for importing a DataTalosMachineConfiguration resource upon running "cdktf plan <stack-name>"
|
|
458
|
+
* @param scope The scope in which to define this construct
|
|
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.9.0/docs/data-sources/machine_configuration#import import section} in the documentation of this resource for the id to use
|
|
461
|
+
* @param provider? Optional instance of the provider where the DataTalosMachineConfiguration to import is found
|
|
462
|
+
*/
|
|
463
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
464
|
+
/**
|
|
465
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.9.0/docs/data-sources/machine_configuration talos_machine_configuration} Data Source
|
|
466
|
+
*
|
|
467
|
+
* @param scope The scope in which to define this construct
|
|
468
|
+
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
469
|
+
* @param options DataTalosMachineConfigurationConfig
|
|
470
|
+
*/
|
|
471
|
+
constructor(scope: Construct, id: string, config: DataTalosMachineConfigurationConfig);
|
|
472
|
+
private _clusterEndpoint?;
|
|
473
|
+
get clusterEndpoint(): string;
|
|
474
|
+
set clusterEndpoint(value: string);
|
|
475
|
+
get clusterEndpointInput(): string;
|
|
476
|
+
private _clusterName?;
|
|
477
|
+
get clusterName(): string;
|
|
478
|
+
set clusterName(value: string);
|
|
479
|
+
get clusterNameInput(): string;
|
|
480
|
+
private _configPatches?;
|
|
481
|
+
get configPatches(): string[];
|
|
482
|
+
set configPatches(value: string[]);
|
|
483
|
+
resetConfigPatches(): void;
|
|
484
|
+
get configPatchesInput(): string[];
|
|
485
|
+
private _docs?;
|
|
486
|
+
get docs(): boolean | cdktf.IResolvable;
|
|
487
|
+
set docs(value: boolean | cdktf.IResolvable);
|
|
488
|
+
resetDocs(): void;
|
|
489
|
+
get docsInput(): any;
|
|
490
|
+
private _examples?;
|
|
491
|
+
get examples(): boolean | cdktf.IResolvable;
|
|
492
|
+
set examples(value: boolean | cdktf.IResolvable);
|
|
493
|
+
resetExamples(): void;
|
|
494
|
+
get examplesInput(): any;
|
|
495
|
+
get id(): any;
|
|
496
|
+
private _kubernetesVersion?;
|
|
497
|
+
get kubernetesVersion(): string;
|
|
498
|
+
set kubernetesVersion(value: string);
|
|
499
|
+
resetKubernetesVersion(): void;
|
|
500
|
+
get kubernetesVersionInput(): string;
|
|
501
|
+
get machineConfiguration(): any;
|
|
502
|
+
private _machineSecrets;
|
|
503
|
+
get machineSecrets(): DataTalosMachineConfigurationMachineSecretsOutputReference;
|
|
504
|
+
putMachineSecrets(value: DataTalosMachineConfigurationMachineSecrets): void;
|
|
505
|
+
get machineSecretsInput(): any;
|
|
506
|
+
private _machineType?;
|
|
507
|
+
get machineType(): string;
|
|
508
|
+
set machineType(value: string);
|
|
509
|
+
get machineTypeInput(): string;
|
|
510
|
+
private _talosVersion?;
|
|
511
|
+
get talosVersion(): string;
|
|
512
|
+
set talosVersion(value: string);
|
|
513
|
+
resetTalosVersion(): void;
|
|
514
|
+
get talosVersionInput(): string;
|
|
515
|
+
protected synthesizeAttributes(): {
|
|
516
|
+
[name: string]: any;
|
|
517
|
+
};
|
|
518
|
+
protected synthesizeHclAttributes(): {
|
|
519
|
+
[name: string]: any;
|
|
520
|
+
};
|
|
521
|
+
}
|