@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
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @cdktf-providers/siderolabs-talos (v0.
|
|
1
|
+
# @cdktf-providers/siderolabs-talos (v0.10.0)
|
|
2
2
|
|
|
3
|
-
This package provides the prebuilt [Terraform siderolabs/talos provider](https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
3
|
+
This package provides the prebuilt [Terraform siderolabs/talos provider](https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs) bindings for [CDK for Terraform (CDKTF)](https://cdk.tf).
|
|
4
4
|
|
|
5
5
|
The bindings are **automatically generated** from the upstream provider schema. They are intended for use in TypeScript CDKTF applications, and always match the version of the upstream Terraform provider.
|
|
6
6
|
|
|
@@ -12,7 +12,7 @@ For more details, see the [cdktf-providers](https://github.com/shunueda/cdktf-pr
|
|
|
12
12
|
|
|
13
13
|
## Docs
|
|
14
14
|
|
|
15
|
-
See provider documentation on [registry.terraform.io](https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
15
|
+
See provider documentation on [registry.terraform.io](https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs).
|
|
16
16
|
|
|
17
17
|
## Disclaimer
|
|
18
18
|
|
|
@@ -4,29 +4,29 @@ export interface ClusterKubeconfigConfig extends cdktf.TerraformMetaArguments {
|
|
|
4
4
|
/**
|
|
5
5
|
* The duration in hours before the certificate is renewed, defaults to 720h. Must be a valid duration string
|
|
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/resources/cluster_kubeconfig#certificate_renewal_duration ClusterKubeconfig#certificate_renewal_duration}
|
|
8
8
|
*/
|
|
9
9
|
readonly certificateRenewalDuration?: string;
|
|
10
10
|
/**
|
|
11
11
|
* The client configuration data
|
|
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/cluster_kubeconfig#client_configuration ClusterKubeconfig#client_configuration}
|
|
14
14
|
*/
|
|
15
15
|
readonly clientConfiguration: ClusterKubeconfigClientConfiguration;
|
|
16
16
|
/**
|
|
17
17
|
* endpoint to use for the talosclient. If not set, the node value will be used
|
|
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/resources/cluster_kubeconfig#endpoint ClusterKubeconfig#endpoint}
|
|
20
20
|
*/
|
|
21
21
|
readonly endpoint?: string;
|
|
22
22
|
/**
|
|
23
23
|
* controlplane node to retrieve the kubeconfig from
|
|
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/resources/cluster_kubeconfig#node ClusterKubeconfig#node}
|
|
26
26
|
*/
|
|
27
27
|
readonly nodeAttribute: string;
|
|
28
28
|
/**
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig#timeouts ClusterKubeconfig#timeouts}
|
|
30
30
|
*/
|
|
31
31
|
readonly timeouts?: ClusterKubeconfigTimeouts;
|
|
32
32
|
}
|
|
@@ -34,19 +34,19 @@ export interface ClusterKubeconfigClientConfiguration {
|
|
|
34
34
|
/**
|
|
35
35
|
* The client CA certificate
|
|
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/resources/cluster_kubeconfig#ca_certificate ClusterKubeconfig#ca_certificate}
|
|
38
38
|
*/
|
|
39
39
|
readonly caCertificate: string;
|
|
40
40
|
/**
|
|
41
41
|
* The client certificate
|
|
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/resources/cluster_kubeconfig#client_certificate ClusterKubeconfig#client_certificate}
|
|
44
44
|
*/
|
|
45
45
|
readonly clientCertificate: string;
|
|
46
46
|
/**
|
|
47
47
|
* The client key
|
|
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/resources/cluster_kubeconfig#client_key ClusterKubeconfig#client_key}
|
|
50
50
|
*/
|
|
51
51
|
readonly clientKey: string;
|
|
52
52
|
}
|
|
@@ -97,13 +97,13 @@ export interface ClusterKubeconfigTimeouts {
|
|
|
97
97
|
/**
|
|
98
98
|
* 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).
|
|
99
99
|
*
|
|
100
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
100
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig#create ClusterKubeconfig#create}
|
|
101
101
|
*/
|
|
102
102
|
readonly create?: string;
|
|
103
103
|
/**
|
|
104
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).
|
|
105
105
|
*
|
|
106
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
106
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig#update ClusterKubeconfig#update}
|
|
107
107
|
*/
|
|
108
108
|
readonly update?: string;
|
|
109
109
|
}
|
|
@@ -131,7 +131,7 @@ export declare class ClusterKubeconfigTimeoutsOutputReference extends cdktf.Comp
|
|
|
131
131
|
get updateInput(): string;
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
134
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig talos_cluster_kubeconfig}
|
|
135
135
|
*/
|
|
136
136
|
export declare class ClusterKubeconfig extends cdktf.TerraformResource {
|
|
137
137
|
static readonly tfResourceType = "talos_cluster_kubeconfig";
|
|
@@ -139,12 +139,12 @@ export declare class ClusterKubeconfig extends cdktf.TerraformResource {
|
|
|
139
139
|
* Generates CDKTF code for importing a ClusterKubeconfig resource upon running "cdktf plan <stack-name>"
|
|
140
140
|
* @param scope The scope in which to define this construct
|
|
141
141
|
* @param importToId The construct id used in the generated config for the ClusterKubeconfig to import
|
|
142
|
-
* @param importFromId The id of the existing ClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
142
|
+
* @param importFromId The id of the existing ClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig#import import section} in the documentation of this resource for the id to use
|
|
143
143
|
* @param provider? Optional instance of the provider where the ClusterKubeconfig to import is found
|
|
144
144
|
*/
|
|
145
145
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
146
146
|
/**
|
|
147
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
147
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig talos_cluster_kubeconfig} Resource
|
|
148
148
|
*
|
|
149
149
|
* @param scope The scope in which to define this construct
|
|
150
150
|
* @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/resources/cluster_kubeconfig
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function clusterKubeconfigClientConfigurationToTerraform(struct) {
|
|
@@ -301,7 +301,7 @@ export class ClusterKubeconfigTimeoutsOutputReference extends cdktf.ComplexObjec
|
|
|
301
301
|
}
|
|
302
302
|
}
|
|
303
303
|
/**
|
|
304
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
304
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig talos_cluster_kubeconfig}
|
|
305
305
|
*/
|
|
306
306
|
export class ClusterKubeconfig extends cdktf.TerraformResource {
|
|
307
307
|
// =================
|
|
@@ -315,7 +315,7 @@ export class ClusterKubeconfig extends cdktf.TerraformResource {
|
|
|
315
315
|
* Generates CDKTF code for importing a ClusterKubeconfig resource upon running "cdktf plan <stack-name>"
|
|
316
316
|
* @param scope The scope in which to define this construct
|
|
317
317
|
* @param importToId The construct id used in the generated config for the ClusterKubeconfig to import
|
|
318
|
-
* @param importFromId The id of the existing ClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
318
|
+
* @param importFromId The id of the existing ClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig#import import section} in the documentation of this resource for the id to use
|
|
319
319
|
* @param provider? Optional instance of the provider where the ClusterKubeconfig to import is found
|
|
320
320
|
*/
|
|
321
321
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -325,7 +325,7 @@ export class ClusterKubeconfig extends cdktf.TerraformResource {
|
|
|
325
325
|
// INITIALIZER
|
|
326
326
|
// ===========
|
|
327
327
|
/**
|
|
328
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
328
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/cluster_kubeconfig talos_cluster_kubeconfig} Resource
|
|
329
329
|
*
|
|
330
330
|
* @param scope The scope in which to define this construct
|
|
331
331
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -336,8 +336,8 @@ export class ClusterKubeconfig extends cdktf.TerraformResource {
|
|
|
336
336
|
terraformResourceType: 'talos_cluster_kubeconfig',
|
|
337
337
|
terraformGeneratorMetadata: {
|
|
338
338
|
providerName: 'talos',
|
|
339
|
-
providerVersion: '0.
|
|
340
|
-
providerVersionConstraint: '0.
|
|
339
|
+
providerVersion: '0.10.0',
|
|
340
|
+
providerVersionConstraint: '0.10.0'
|
|
341
341
|
},
|
|
342
342
|
provider: config.provider,
|
|
343
343
|
dependsOn: config.dependsOn,
|
|
@@ -4,25 +4,25 @@ export interface DataTalosClientConfigurationConfig extends cdktf.TerraformMetaA
|
|
|
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/client_configuration#client_configuration DataTalosClientConfiguration#client_configuration}
|
|
8
8
|
*/
|
|
9
9
|
readonly clientConfiguration: DataTalosClientConfigurationClientConfiguration;
|
|
10
10
|
/**
|
|
11
11
|
* The name of the cluster in the generated config
|
|
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/client_configuration#cluster_name DataTalosClientConfiguration#cluster_name}
|
|
14
14
|
*/
|
|
15
15
|
readonly clusterName: string;
|
|
16
16
|
/**
|
|
17
17
|
* endpoints to set in the generated config
|
|
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/client_configuration#endpoints DataTalosClientConfiguration#endpoints}
|
|
20
20
|
*/
|
|
21
21
|
readonly endpoints?: string[];
|
|
22
22
|
/**
|
|
23
23
|
* nodes to set in the generated config
|
|
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/client_configuration#nodes DataTalosClientConfiguration#nodes}
|
|
26
26
|
*/
|
|
27
27
|
readonly nodes?: string[];
|
|
28
28
|
}
|
|
@@ -30,19 +30,19 @@ export interface DataTalosClientConfigurationClientConfiguration {
|
|
|
30
30
|
/**
|
|
31
31
|
* The client CA certificate
|
|
32
32
|
*
|
|
33
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
33
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration#ca_certificate DataTalosClientConfiguration#ca_certificate}
|
|
34
34
|
*/
|
|
35
35
|
readonly caCertificate: string;
|
|
36
36
|
/**
|
|
37
37
|
* The client 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/client_configuration#client_certificate DataTalosClientConfiguration#client_certificate}
|
|
40
40
|
*/
|
|
41
41
|
readonly clientCertificate: string;
|
|
42
42
|
/**
|
|
43
43
|
* The client key
|
|
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/client_configuration#client_key DataTalosClientConfiguration#client_key}
|
|
46
46
|
*/
|
|
47
47
|
readonly clientKey: string;
|
|
48
48
|
}
|
|
@@ -72,7 +72,7 @@ export declare class DataTalosClientConfigurationClientConfigurationOutputRefere
|
|
|
72
72
|
get clientKeyInput(): string;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
75
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration talos_client_configuration}
|
|
76
76
|
*/
|
|
77
77
|
export declare class DataTalosClientConfiguration extends cdktf.TerraformDataSource {
|
|
78
78
|
static readonly tfResourceType = "talos_client_configuration";
|
|
@@ -80,12 +80,12 @@ export declare class DataTalosClientConfiguration extends cdktf.TerraformDataSou
|
|
|
80
80
|
* Generates CDKTF code for importing a DataTalosClientConfiguration resource upon running "cdktf plan <stack-name>"
|
|
81
81
|
* @param scope The scope in which to define this construct
|
|
82
82
|
* @param importToId The construct id used in the generated config for the DataTalosClientConfiguration to import
|
|
83
|
-
* @param importFromId The id of the existing DataTalosClientConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
83
|
+
* @param importFromId The id of the existing DataTalosClientConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration#import import section} in the documentation of this resource for the id to use
|
|
84
84
|
* @param provider? Optional instance of the provider where the DataTalosClientConfiguration to import is found
|
|
85
85
|
*/
|
|
86
86
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
87
87
|
/**
|
|
88
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
88
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration talos_client_configuration} Data Source
|
|
89
89
|
*
|
|
90
90
|
* @param scope The scope in which to define this construct
|
|
91
91
|
* @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/client_configuration
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function dataTalosClientConfigurationClientConfigurationToTerraform(struct) {
|
|
@@ -132,7 +132,7 @@ export class DataTalosClientConfigurationClientConfigurationOutputReference exte
|
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
135
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration talos_client_configuration}
|
|
136
136
|
*/
|
|
137
137
|
export class DataTalosClientConfiguration extends cdktf.TerraformDataSource {
|
|
138
138
|
// =================
|
|
@@ -146,7 +146,7 @@ export class DataTalosClientConfiguration extends cdktf.TerraformDataSource {
|
|
|
146
146
|
* Generates CDKTF code for importing a DataTalosClientConfiguration resource upon running "cdktf plan <stack-name>"
|
|
147
147
|
* @param scope The scope in which to define this construct
|
|
148
148
|
* @param importToId The construct id used in the generated config for the DataTalosClientConfiguration to import
|
|
149
|
-
* @param importFromId The id of the existing DataTalosClientConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
149
|
+
* @param importFromId The id of the existing DataTalosClientConfiguration that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration#import import section} in the documentation of this resource for the id to use
|
|
150
150
|
* @param provider? Optional instance of the provider where the DataTalosClientConfiguration to import is found
|
|
151
151
|
*/
|
|
152
152
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -156,7 +156,7 @@ export class DataTalosClientConfiguration extends cdktf.TerraformDataSource {
|
|
|
156
156
|
// INITIALIZER
|
|
157
157
|
// ===========
|
|
158
158
|
/**
|
|
159
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
159
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/client_configuration talos_client_configuration} Data Source
|
|
160
160
|
*
|
|
161
161
|
* @param scope The scope in which to define this construct
|
|
162
162
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -167,8 +167,8 @@ export class DataTalosClientConfiguration extends cdktf.TerraformDataSource {
|
|
|
167
167
|
terraformResourceType: 'talos_client_configuration',
|
|
168
168
|
terraformGeneratorMetadata: {
|
|
169
169
|
providerName: 'talos',
|
|
170
|
-
providerVersion: '0.
|
|
171
|
-
providerVersionConstraint: '0.
|
|
170
|
+
providerVersion: '0.10.0',
|
|
171
|
+
providerVersionConstraint: '0.10.0'
|
|
172
172
|
},
|
|
173
173
|
provider: config.provider,
|
|
174
174
|
dependsOn: config.dependsOn,
|
|
@@ -4,35 +4,35 @@ export interface DataTalosClusterHealthConfig extends cdktf.TerraformMetaArgumen
|
|
|
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/cluster_health#client_configuration DataTalosClusterHealth#client_configuration}
|
|
8
8
|
*/
|
|
9
9
|
readonly clientConfiguration: DataTalosClusterHealthClientConfiguration;
|
|
10
10
|
/**
|
|
11
11
|
* List of control plane nodes to check for health.
|
|
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/cluster_health#control_plane_nodes DataTalosClusterHealth#control_plane_nodes}
|
|
14
14
|
*/
|
|
15
15
|
readonly controlPlaneNodes: string[];
|
|
16
16
|
/**
|
|
17
17
|
* endpoints to use for the health check client. Use at least one control plane endpoint.
|
|
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/cluster_health#endpoints DataTalosClusterHealth#endpoints}
|
|
20
20
|
*/
|
|
21
21
|
readonly endpoints: string[];
|
|
22
22
|
/**
|
|
23
23
|
* Skip Kubernetes component checks, this is useful to check if the nodes has finished booting up and kubelet is running. Default is 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/cluster_health#skip_kubernetes_checks DataTalosClusterHealth#skip_kubernetes_checks}
|
|
26
26
|
*/
|
|
27
27
|
readonly skipKubernetesChecks?: boolean | cdktf.IResolvable;
|
|
28
28
|
/**
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health#timeouts DataTalosClusterHealth#timeouts}
|
|
30
30
|
*/
|
|
31
31
|
readonly timeouts?: DataTalosClusterHealthTimeouts;
|
|
32
32
|
/**
|
|
33
33
|
* List of worker nodes to check for health.
|
|
34
34
|
*
|
|
35
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
35
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health#worker_nodes DataTalosClusterHealth#worker_nodes}
|
|
36
36
|
*/
|
|
37
37
|
readonly workerNodes?: string[];
|
|
38
38
|
}
|
|
@@ -40,19 +40,19 @@ export interface DataTalosClusterHealthClientConfiguration {
|
|
|
40
40
|
/**
|
|
41
41
|
* The client CA certificate
|
|
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/cluster_health#ca_certificate DataTalosClusterHealth#ca_certificate}
|
|
44
44
|
*/
|
|
45
45
|
readonly caCertificate: string;
|
|
46
46
|
/**
|
|
47
47
|
* The client certificate
|
|
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/cluster_health#client_certificate DataTalosClusterHealth#client_certificate}
|
|
50
50
|
*/
|
|
51
51
|
readonly clientCertificate: string;
|
|
52
52
|
/**
|
|
53
53
|
* The client key
|
|
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/cluster_health#client_key DataTalosClusterHealth#client_key}
|
|
56
56
|
*/
|
|
57
57
|
readonly clientKey: string;
|
|
58
58
|
}
|
|
@@ -85,7 +85,7 @@ export interface DataTalosClusterHealthTimeouts {
|
|
|
85
85
|
/**
|
|
86
86
|
* 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.
|
|
87
87
|
*
|
|
88
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
88
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health#read DataTalosClusterHealth#read}
|
|
89
89
|
*/
|
|
90
90
|
readonly read?: string;
|
|
91
91
|
}
|
|
@@ -108,7 +108,7 @@ export declare class DataTalosClusterHealthTimeoutsOutputReference extends cdktf
|
|
|
108
108
|
get readInput(): string;
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
111
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health talos_cluster_health}
|
|
112
112
|
*/
|
|
113
113
|
export declare class DataTalosClusterHealth extends cdktf.TerraformDataSource {
|
|
114
114
|
static readonly tfResourceType = "talos_cluster_health";
|
|
@@ -116,12 +116,12 @@ export declare class DataTalosClusterHealth extends cdktf.TerraformDataSource {
|
|
|
116
116
|
* Generates CDKTF code for importing a DataTalosClusterHealth resource upon running "cdktf plan <stack-name>"
|
|
117
117
|
* @param scope The scope in which to define this construct
|
|
118
118
|
* @param importToId The construct id used in the generated config for the DataTalosClusterHealth to import
|
|
119
|
-
* @param importFromId The id of the existing DataTalosClusterHealth that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
119
|
+
* @param importFromId The id of the existing DataTalosClusterHealth that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health#import import section} in the documentation of this resource for the id to use
|
|
120
120
|
* @param provider? Optional instance of the provider where the DataTalosClusterHealth to import is found
|
|
121
121
|
*/
|
|
122
122
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
123
123
|
/**
|
|
124
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
124
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health talos_cluster_health} Data Source
|
|
125
125
|
*
|
|
126
126
|
* @param scope The scope in which to define this construct
|
|
127
127
|
* @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/cluster_health
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function dataTalosClusterHealthClientConfigurationToTerraform(struct) {
|
|
@@ -215,7 +215,7 @@ export class DataTalosClusterHealthTimeoutsOutputReference extends cdktf.Complex
|
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
218
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health talos_cluster_health}
|
|
219
219
|
*/
|
|
220
220
|
export class DataTalosClusterHealth extends cdktf.TerraformDataSource {
|
|
221
221
|
// =================
|
|
@@ -229,7 +229,7 @@ export class DataTalosClusterHealth extends cdktf.TerraformDataSource {
|
|
|
229
229
|
* Generates CDKTF code for importing a DataTalosClusterHealth resource upon running "cdktf plan <stack-name>"
|
|
230
230
|
* @param scope The scope in which to define this construct
|
|
231
231
|
* @param importToId The construct id used in the generated config for the DataTalosClusterHealth to import
|
|
232
|
-
* @param importFromId The id of the existing DataTalosClusterHealth that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
232
|
+
* @param importFromId The id of the existing DataTalosClusterHealth that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health#import import section} in the documentation of this resource for the id to use
|
|
233
233
|
* @param provider? Optional instance of the provider where the DataTalosClusterHealth to import is found
|
|
234
234
|
*/
|
|
235
235
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -239,7 +239,7 @@ export class DataTalosClusterHealth extends cdktf.TerraformDataSource {
|
|
|
239
239
|
// INITIALIZER
|
|
240
240
|
// ===========
|
|
241
241
|
/**
|
|
242
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
242
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_health talos_cluster_health} Data Source
|
|
243
243
|
*
|
|
244
244
|
* @param scope The scope in which to define this construct
|
|
245
245
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -250,8 +250,8 @@ export class DataTalosClusterHealth extends cdktf.TerraformDataSource {
|
|
|
250
250
|
terraformResourceType: 'talos_cluster_health',
|
|
251
251
|
terraformGeneratorMetadata: {
|
|
252
252
|
providerName: 'talos',
|
|
253
|
-
providerVersion: '0.
|
|
254
|
-
providerVersionConstraint: '0.
|
|
253
|
+
providerVersion: '0.10.0',
|
|
254
|
+
providerVersionConstraint: '0.10.0'
|
|
255
255
|
},
|
|
256
256
|
provider: config.provider,
|
|
257
257
|
dependsOn: config.dependsOn,
|
|
@@ -4,29 +4,29 @@ export interface DataTalosClusterKubeconfigConfig extends cdktf.TerraformMetaArg
|
|
|
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/cluster_kubeconfig#client_configuration DataTalosClusterKubeconfig#client_configuration}
|
|
8
8
|
*/
|
|
9
9
|
readonly clientConfiguration: DataTalosClusterKubeconfigClientConfiguration;
|
|
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/cluster_kubeconfig#endpoint DataTalosClusterKubeconfig#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/cluster_kubeconfig#node DataTalosClusterKubeconfig#node}
|
|
20
20
|
*/
|
|
21
21
|
readonly nodeAttribute: string;
|
|
22
22
|
/**
|
|
23
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
23
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig#timeouts DataTalosClusterKubeconfig#timeouts}
|
|
24
24
|
*/
|
|
25
25
|
readonly timeouts?: DataTalosClusterKubeconfigTimeouts;
|
|
26
26
|
/**
|
|
27
27
|
* Wait for the kubernetes api to be available
|
|
28
28
|
*
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig#wait DataTalosClusterKubeconfig#wait}
|
|
30
30
|
*/
|
|
31
31
|
readonly wait?: boolean | cdktf.IResolvable;
|
|
32
32
|
}
|
|
@@ -34,19 +34,19 @@ export interface DataTalosClusterKubeconfigClientConfiguration {
|
|
|
34
34
|
/**
|
|
35
35
|
* The client CA certificate
|
|
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/cluster_kubeconfig#ca_certificate DataTalosClusterKubeconfig#ca_certificate}
|
|
38
38
|
*/
|
|
39
39
|
readonly caCertificate: string;
|
|
40
40
|
/**
|
|
41
41
|
* The client certificate
|
|
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/cluster_kubeconfig#client_certificate DataTalosClusterKubeconfig#client_certificate}
|
|
44
44
|
*/
|
|
45
45
|
readonly clientCertificate: string;
|
|
46
46
|
/**
|
|
47
47
|
* The client key
|
|
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/cluster_kubeconfig#client_key DataTalosClusterKubeconfig#client_key}
|
|
50
50
|
*/
|
|
51
51
|
readonly clientKey: string;
|
|
52
52
|
}
|
|
@@ -97,7 +97,7 @@ export interface DataTalosClusterKubeconfigTimeouts {
|
|
|
97
97
|
/**
|
|
98
98
|
* 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.
|
|
99
99
|
*
|
|
100
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
100
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig#read DataTalosClusterKubeconfig#read}
|
|
101
101
|
*/
|
|
102
102
|
readonly read?: string;
|
|
103
103
|
}
|
|
@@ -120,7 +120,7 @@ export declare class DataTalosClusterKubeconfigTimeoutsOutputReference extends c
|
|
|
120
120
|
get readInput(): string;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
123
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig talos_cluster_kubeconfig}
|
|
124
124
|
*/
|
|
125
125
|
export declare class DataTalosClusterKubeconfig extends cdktf.TerraformDataSource {
|
|
126
126
|
static readonly tfResourceType = "talos_cluster_kubeconfig";
|
|
@@ -128,12 +128,12 @@ export declare class DataTalosClusterKubeconfig extends cdktf.TerraformDataSourc
|
|
|
128
128
|
* Generates CDKTF code for importing a DataTalosClusterKubeconfig resource upon running "cdktf plan <stack-name>"
|
|
129
129
|
* @param scope The scope in which to define this construct
|
|
130
130
|
* @param importToId The construct id used in the generated config for the DataTalosClusterKubeconfig to import
|
|
131
|
-
* @param importFromId The id of the existing DataTalosClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
131
|
+
* @param importFromId The id of the existing DataTalosClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig#import import section} in the documentation of this resource for the id to use
|
|
132
132
|
* @param provider? Optional instance of the provider where the DataTalosClusterKubeconfig to import is found
|
|
133
133
|
*/
|
|
134
134
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
135
135
|
/**
|
|
136
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
136
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig talos_cluster_kubeconfig} Data Source
|
|
137
137
|
*
|
|
138
138
|
* @param scope The scope in which to define this construct
|
|
139
139
|
* @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/cluster_kubeconfig
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function dataTalosClusterKubeconfigClientConfigurationToTerraform(struct) {
|
|
@@ -273,7 +273,7 @@ export class DataTalosClusterKubeconfigTimeoutsOutputReference extends cdktf.Com
|
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
275
|
/**
|
|
276
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
276
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig talos_cluster_kubeconfig}
|
|
277
277
|
*/
|
|
278
278
|
export class DataTalosClusterKubeconfig extends cdktf.TerraformDataSource {
|
|
279
279
|
// =================
|
|
@@ -287,7 +287,7 @@ export class DataTalosClusterKubeconfig extends cdktf.TerraformDataSource {
|
|
|
287
287
|
* Generates CDKTF code for importing a DataTalosClusterKubeconfig resource upon running "cdktf plan <stack-name>"
|
|
288
288
|
* @param scope The scope in which to define this construct
|
|
289
289
|
* @param importToId The construct id used in the generated config for the DataTalosClusterKubeconfig to import
|
|
290
|
-
* @param importFromId The id of the existing DataTalosClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
290
|
+
* @param importFromId The id of the existing DataTalosClusterKubeconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig#import import section} in the documentation of this resource for the id to use
|
|
291
291
|
* @param provider? Optional instance of the provider where the DataTalosClusterKubeconfig to import is found
|
|
292
292
|
*/
|
|
293
293
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -297,7 +297,7 @@ export class DataTalosClusterKubeconfig extends cdktf.TerraformDataSource {
|
|
|
297
297
|
// INITIALIZER
|
|
298
298
|
// ===========
|
|
299
299
|
/**
|
|
300
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
300
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/data-sources/cluster_kubeconfig talos_cluster_kubeconfig} Data Source
|
|
301
301
|
*
|
|
302
302
|
* @param scope The scope in which to define this construct
|
|
303
303
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -308,8 +308,8 @@ export class DataTalosClusterKubeconfig extends cdktf.TerraformDataSource {
|
|
|
308
308
|
terraformResourceType: 'talos_cluster_kubeconfig',
|
|
309
309
|
terraformGeneratorMetadata: {
|
|
310
310
|
providerName: 'talos',
|
|
311
|
-
providerVersion: '0.
|
|
312
|
-
providerVersionConstraint: '0.
|
|
311
|
+
providerVersion: '0.10.0',
|
|
312
|
+
providerVersionConstraint: '0.10.0'
|
|
313
313
|
},
|
|
314
314
|
provider: config.provider,
|
|
315
315
|
dependsOn: config.dependsOn,
|