@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,23 +4,23 @@ export interface MachineBootstrapConfig extends cdktf.TerraformMetaArguments {
|
|
|
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/resources/machine_bootstrap#client_configuration MachineBootstrap#client_configuration}
|
|
8
8
|
*/
|
|
9
9
|
readonly clientConfiguration: MachineBootstrapClientConfiguration;
|
|
10
10
|
/**
|
|
11
11
|
* The endpoint of the machine to bootstrap
|
|
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/machine_bootstrap#endpoint MachineBootstrap#endpoint}
|
|
14
14
|
*/
|
|
15
15
|
readonly endpoint?: string;
|
|
16
16
|
/**
|
|
17
17
|
* The name of the node to bootstrap
|
|
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/machine_bootstrap#node MachineBootstrap#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/resources/machine_bootstrap#timeouts MachineBootstrap#timeouts}
|
|
24
24
|
*/
|
|
25
25
|
readonly timeouts?: MachineBootstrapTimeouts;
|
|
26
26
|
}
|
|
@@ -28,19 +28,19 @@ export interface MachineBootstrapClientConfiguration {
|
|
|
28
28
|
/**
|
|
29
29
|
* The client CA certificate
|
|
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/resources/machine_bootstrap#ca_certificate MachineBootstrap#ca_certificate}
|
|
32
32
|
*/
|
|
33
33
|
readonly caCertificate: string;
|
|
34
34
|
/**
|
|
35
35
|
* The client 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/machine_bootstrap#client_certificate MachineBootstrap#client_certificate}
|
|
38
38
|
*/
|
|
39
39
|
readonly clientCertificate: string;
|
|
40
40
|
/**
|
|
41
41
|
* The client key
|
|
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/machine_bootstrap#client_key MachineBootstrap#client_key}
|
|
44
44
|
*/
|
|
45
45
|
readonly clientKey: string;
|
|
46
46
|
}
|
|
@@ -73,7 +73,7 @@ export interface MachineBootstrapTimeouts {
|
|
|
73
73
|
/**
|
|
74
74
|
* 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).
|
|
75
75
|
*
|
|
76
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
76
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_bootstrap#create MachineBootstrap#create}
|
|
77
77
|
*/
|
|
78
78
|
readonly create?: string;
|
|
79
79
|
}
|
|
@@ -96,7 +96,7 @@ export declare class MachineBootstrapTimeoutsOutputReference extends cdktf.Compl
|
|
|
96
96
|
get createInput(): string;
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
99
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
99
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_bootstrap talos_machine_bootstrap}
|
|
100
100
|
*/
|
|
101
101
|
export declare class MachineBootstrap extends cdktf.TerraformResource {
|
|
102
102
|
static readonly tfResourceType = "talos_machine_bootstrap";
|
|
@@ -104,12 +104,12 @@ export declare class MachineBootstrap extends cdktf.TerraformResource {
|
|
|
104
104
|
* Generates CDKTF code for importing a MachineBootstrap resource upon running "cdktf plan <stack-name>"
|
|
105
105
|
* @param scope The scope in which to define this construct
|
|
106
106
|
* @param importToId The construct id used in the generated config for the MachineBootstrap to import
|
|
107
|
-
* @param importFromId The id of the existing MachineBootstrap that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
107
|
+
* @param importFromId The id of the existing MachineBootstrap that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_bootstrap#import import section} in the documentation of this resource for the id to use
|
|
108
108
|
* @param provider? Optional instance of the provider where the MachineBootstrap to import is found
|
|
109
109
|
*/
|
|
110
110
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
111
111
|
/**
|
|
112
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
112
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_bootstrap talos_machine_bootstrap} Resource
|
|
113
113
|
*
|
|
114
114
|
* @param scope The scope in which to define this construct
|
|
115
115
|
* @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/machine_bootstrap
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function machineBootstrapClientConfigurationToTerraform(struct) {
|
|
@@ -215,7 +215,7 @@ export class MachineBootstrapTimeoutsOutputReference extends cdktf.ComplexObject
|
|
|
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/resources/machine_bootstrap talos_machine_bootstrap}
|
|
219
219
|
*/
|
|
220
220
|
export class MachineBootstrap extends cdktf.TerraformResource {
|
|
221
221
|
// =================
|
|
@@ -229,7 +229,7 @@ export class MachineBootstrap extends cdktf.TerraformResource {
|
|
|
229
229
|
* Generates CDKTF code for importing a MachineBootstrap 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 MachineBootstrap to import
|
|
232
|
-
* @param importFromId The id of the existing MachineBootstrap that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
232
|
+
* @param importFromId The id of the existing MachineBootstrap that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_bootstrap#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 MachineBootstrap to import is found
|
|
234
234
|
*/
|
|
235
235
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -239,7 +239,7 @@ export class MachineBootstrap extends cdktf.TerraformResource {
|
|
|
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/resources/machine_bootstrap talos_machine_bootstrap} Resource
|
|
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 MachineBootstrap extends cdktf.TerraformResource {
|
|
|
250
250
|
terraformResourceType: 'talos_machine_bootstrap',
|
|
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,37 +4,37 @@ export interface MachineConfigurationApplyConfig extends cdktf.TerraformMetaArgu
|
|
|
4
4
|
/**
|
|
5
5
|
* The mode of the apply operation
|
|
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/machine_configuration_apply#apply_mode MachineConfigurationApply#apply_mode}
|
|
8
8
|
*/
|
|
9
9
|
readonly applyMode?: 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/machine_configuration_apply#client_configuration MachineConfigurationApply#client_configuration}
|
|
14
14
|
*/
|
|
15
15
|
readonly clientConfiguration: MachineConfigurationApplyClientConfiguration;
|
|
16
16
|
/**
|
|
17
17
|
* The list of config patches to apply
|
|
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/machine_configuration_apply#config_patches MachineConfigurationApply#config_patches}
|
|
20
20
|
*/
|
|
21
21
|
readonly configPatches?: string[];
|
|
22
22
|
/**
|
|
23
23
|
* The endpoint of the machine to bootstrap
|
|
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/machine_configuration_apply#endpoint MachineConfigurationApply#endpoint}
|
|
26
26
|
*/
|
|
27
27
|
readonly endpoint?: string;
|
|
28
28
|
/**
|
|
29
29
|
* The machine configuration to apply
|
|
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/resources/machine_configuration_apply#machine_configuration_input MachineConfigurationApply#machine_configuration_input}
|
|
32
32
|
*/
|
|
33
33
|
readonly machineConfigurationInput: string;
|
|
34
34
|
/**
|
|
35
35
|
* The name of the node to bootstrap
|
|
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/machine_configuration_apply#node MachineConfigurationApply#node}
|
|
38
38
|
*/
|
|
39
39
|
readonly nodeAttribute: string;
|
|
40
40
|
/**
|
|
@@ -44,11 +44,11 @@ export interface MachineConfigurationApplyConfig extends cdktf.TerraformMetaArgu
|
|
|
44
44
|
* then a subsequent *terraform destroy* for the changes to take effect due to limitations in Terraform provider framework.
|
|
45
45
|
*
|
|
46
46
|
*
|
|
47
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
47
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#on_destroy MachineConfigurationApply#on_destroy}
|
|
48
48
|
*/
|
|
49
49
|
readonly onDestroy?: MachineConfigurationApplyOnDestroy;
|
|
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/resources/machine_configuration_apply#timeouts MachineConfigurationApply#timeouts}
|
|
52
52
|
*/
|
|
53
53
|
readonly timeouts?: MachineConfigurationApplyTimeouts;
|
|
54
54
|
}
|
|
@@ -56,19 +56,19 @@ export interface MachineConfigurationApplyClientConfiguration {
|
|
|
56
56
|
/**
|
|
57
57
|
* The client CA certificate
|
|
58
58
|
*
|
|
59
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
59
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#ca_certificate MachineConfigurationApply#ca_certificate}
|
|
60
60
|
*/
|
|
61
61
|
readonly caCertificate: string;
|
|
62
62
|
/**
|
|
63
63
|
* The client certificate
|
|
64
64
|
*
|
|
65
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
65
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#client_certificate MachineConfigurationApply#client_certificate}
|
|
66
66
|
*/
|
|
67
67
|
readonly clientCertificate: string;
|
|
68
68
|
/**
|
|
69
69
|
* The client key
|
|
70
70
|
*
|
|
71
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
71
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#client_key MachineConfigurationApply#client_key}
|
|
72
72
|
*/
|
|
73
73
|
readonly clientKey: string;
|
|
74
74
|
}
|
|
@@ -101,19 +101,19 @@ export interface MachineConfigurationApplyOnDestroy {
|
|
|
101
101
|
/**
|
|
102
102
|
* Graceful indicates whether node should leave etcd before the upgrade, it also enforces etcd checks before leaving. Default true
|
|
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/resources/machine_configuration_apply#graceful MachineConfigurationApply#graceful}
|
|
105
105
|
*/
|
|
106
106
|
readonly graceful?: boolean | cdktf.IResolvable;
|
|
107
107
|
/**
|
|
108
108
|
* Reboot indicates whether node should reboot or halt after resetting. Default false
|
|
109
109
|
*
|
|
110
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
110
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#reboot MachineConfigurationApply#reboot}
|
|
111
111
|
*/
|
|
112
112
|
readonly reboot?: boolean | cdktf.IResolvable;
|
|
113
113
|
/**
|
|
114
114
|
* Reset the machine to the initial state (STATE and EPHEMERAL will be wiped). Default false
|
|
115
115
|
*
|
|
116
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
116
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#reset MachineConfigurationApply#reset}
|
|
117
117
|
*/
|
|
118
118
|
readonly reset?: boolean | cdktf.IResolvable;
|
|
119
119
|
}
|
|
@@ -149,19 +149,19 @@ export interface MachineConfigurationApplyTimeouts {
|
|
|
149
149
|
/**
|
|
150
150
|
* 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).
|
|
151
151
|
*
|
|
152
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
152
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#create MachineConfigurationApply#create}
|
|
153
153
|
*/
|
|
154
154
|
readonly create?: string;
|
|
155
155
|
/**
|
|
156
156
|
* 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
157
157
|
*
|
|
158
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
158
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#delete MachineConfigurationApply#delete}
|
|
159
159
|
*/
|
|
160
160
|
readonly delete?: string;
|
|
161
161
|
/**
|
|
162
162
|
* 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).
|
|
163
163
|
*
|
|
164
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
164
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#update MachineConfigurationApply#update}
|
|
165
165
|
*/
|
|
166
166
|
readonly update?: string;
|
|
167
167
|
}
|
|
@@ -194,7 +194,7 @@ export declare class MachineConfigurationApplyTimeoutsOutputReference extends cd
|
|
|
194
194
|
get updateInput(): string;
|
|
195
195
|
}
|
|
196
196
|
/**
|
|
197
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
197
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply talos_machine_configuration_apply}
|
|
198
198
|
*/
|
|
199
199
|
export declare class MachineConfigurationApply extends cdktf.TerraformResource {
|
|
200
200
|
static readonly tfResourceType = "talos_machine_configuration_apply";
|
|
@@ -202,12 +202,12 @@ export declare class MachineConfigurationApply extends cdktf.TerraformResource {
|
|
|
202
202
|
* Generates CDKTF code for importing a MachineConfigurationApply resource upon running "cdktf plan <stack-name>"
|
|
203
203
|
* @param scope The scope in which to define this construct
|
|
204
204
|
* @param importToId The construct id used in the generated config for the MachineConfigurationApply to import
|
|
205
|
-
* @param importFromId The id of the existing MachineConfigurationApply that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
205
|
+
* @param importFromId The id of the existing MachineConfigurationApply that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#import import section} in the documentation of this resource for the id to use
|
|
206
206
|
* @param provider? Optional instance of the provider where the MachineConfigurationApply to import is found
|
|
207
207
|
*/
|
|
208
208
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
209
209
|
/**
|
|
210
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
210
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply talos_machine_configuration_apply} Resource
|
|
211
211
|
*
|
|
212
212
|
* @param scope The scope in which to define this construct
|
|
213
213
|
* @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/machine_configuration_apply
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function machineConfigurationApplyClientConfigurationToTerraform(struct) {
|
|
@@ -410,7 +410,7 @@ export class MachineConfigurationApplyTimeoutsOutputReference extends cdktf.Comp
|
|
|
410
410
|
}
|
|
411
411
|
}
|
|
412
412
|
/**
|
|
413
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
413
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply talos_machine_configuration_apply}
|
|
414
414
|
*/
|
|
415
415
|
export class MachineConfigurationApply extends cdktf.TerraformResource {
|
|
416
416
|
// =================
|
|
@@ -424,7 +424,7 @@ export class MachineConfigurationApply extends cdktf.TerraformResource {
|
|
|
424
424
|
* Generates CDKTF code for importing a MachineConfigurationApply resource upon running "cdktf plan <stack-name>"
|
|
425
425
|
* @param scope The scope in which to define this construct
|
|
426
426
|
* @param importToId The construct id used in the generated config for the MachineConfigurationApply to import
|
|
427
|
-
* @param importFromId The id of the existing MachineConfigurationApply that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
427
|
+
* @param importFromId The id of the existing MachineConfigurationApply that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply#import import section} in the documentation of this resource for the id to use
|
|
428
428
|
* @param provider? Optional instance of the provider where the MachineConfigurationApply to import is found
|
|
429
429
|
*/
|
|
430
430
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -434,7 +434,7 @@ export class MachineConfigurationApply extends cdktf.TerraformResource {
|
|
|
434
434
|
// INITIALIZER
|
|
435
435
|
// ===========
|
|
436
436
|
/**
|
|
437
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
437
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_configuration_apply talos_machine_configuration_apply} Resource
|
|
438
438
|
*
|
|
439
439
|
* @param scope The scope in which to define this construct
|
|
440
440
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -445,8 +445,8 @@ export class MachineConfigurationApply extends cdktf.TerraformResource {
|
|
|
445
445
|
terraformResourceType: 'talos_machine_configuration_apply',
|
|
446
446
|
terraformGeneratorMetadata: {
|
|
447
447
|
providerName: 'talos',
|
|
448
|
-
providerVersion: '0.
|
|
449
|
-
providerVersionConstraint: '0.
|
|
448
|
+
providerVersion: '0.10.0',
|
|
449
|
+
providerVersionConstraint: '0.10.0'
|
|
450
450
|
},
|
|
451
451
|
provider: config.provider,
|
|
452
452
|
dependsOn: config.dependsOn,
|
|
@@ -4,7 +4,7 @@ export interface MachineSecretsConfig extends cdktf.TerraformMetaArguments {
|
|
|
4
4
|
/**
|
|
5
5
|
* The version of talos features to use in generated machine configuration
|
|
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/machine_secrets#talos_version MachineSecrets#talos_version}
|
|
8
8
|
*/
|
|
9
9
|
readonly talosVersion?: string;
|
|
10
10
|
}
|
|
@@ -199,7 +199,7 @@ export declare class MachineSecretsMachineSecretsOutputReference extends cdktf.C
|
|
|
199
199
|
get trustdinfo(): MachineSecretsMachineSecretsTrustdinfoOutputReference;
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
202
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_secrets talos_machine_secrets}
|
|
203
203
|
*/
|
|
204
204
|
export declare class MachineSecrets extends cdktf.TerraformResource {
|
|
205
205
|
static readonly tfResourceType = "talos_machine_secrets";
|
|
@@ -207,12 +207,12 @@ export declare class MachineSecrets extends cdktf.TerraformResource {
|
|
|
207
207
|
* Generates CDKTF code for importing a MachineSecrets resource upon running "cdktf plan <stack-name>"
|
|
208
208
|
* @param scope The scope in which to define this construct
|
|
209
209
|
* @param importToId The construct id used in the generated config for the MachineSecrets to import
|
|
210
|
-
* @param importFromId The id of the existing MachineSecrets that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
210
|
+
* @param importFromId The id of the existing MachineSecrets that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_secrets#import import section} in the documentation of this resource for the id to use
|
|
211
211
|
* @param provider? Optional instance of the provider where the MachineSecrets to import is found
|
|
212
212
|
*/
|
|
213
213
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
214
214
|
/**
|
|
215
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
215
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_secrets talos_machine_secrets} Resource
|
|
216
216
|
*
|
|
217
217
|
* @param scope The scope in which to define this construct
|
|
218
218
|
* @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/machine_secrets
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function machineSecretsClientConfigurationToTerraform(struct) {
|
|
@@ -581,7 +581,7 @@ export class MachineSecretsMachineSecretsOutputReference extends cdktf.ComplexOb
|
|
|
581
581
|
}
|
|
582
582
|
}
|
|
583
583
|
/**
|
|
584
|
-
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
584
|
+
* Represents a {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_secrets talos_machine_secrets}
|
|
585
585
|
*/
|
|
586
586
|
export class MachineSecrets extends cdktf.TerraformResource {
|
|
587
587
|
// =================
|
|
@@ -595,7 +595,7 @@ export class MachineSecrets extends cdktf.TerraformResource {
|
|
|
595
595
|
* Generates CDKTF code for importing a MachineSecrets resource upon running "cdktf plan <stack-name>"
|
|
596
596
|
* @param scope The scope in which to define this construct
|
|
597
597
|
* @param importToId The construct id used in the generated config for the MachineSecrets to import
|
|
598
|
-
* @param importFromId The id of the existing MachineSecrets that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
598
|
+
* @param importFromId The id of the existing MachineSecrets that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_secrets#import import section} in the documentation of this resource for the id to use
|
|
599
599
|
* @param provider? Optional instance of the provider where the MachineSecrets to import is found
|
|
600
600
|
*/
|
|
601
601
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -605,7 +605,7 @@ export class MachineSecrets extends cdktf.TerraformResource {
|
|
|
605
605
|
// INITIALIZER
|
|
606
606
|
// ===========
|
|
607
607
|
/**
|
|
608
|
-
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
608
|
+
* Create a new {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs/resources/machine_secrets talos_machine_secrets} Resource
|
|
609
609
|
*
|
|
610
610
|
* @param scope The scope in which to define this construct
|
|
611
611
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -616,8 +616,8 @@ export class MachineSecrets extends cdktf.TerraformResource {
|
|
|
616
616
|
terraformResourceType: 'talos_machine_secrets',
|
|
617
617
|
terraformGeneratorMetadata: {
|
|
618
618
|
providerName: 'talos',
|
|
619
|
-
providerVersion: '0.
|
|
620
|
-
providerVersionConstraint: '0.
|
|
619
|
+
providerVersion: '0.10.0',
|
|
620
|
+
providerVersionConstraint: '0.10.0'
|
|
621
621
|
},
|
|
622
622
|
provider: config.provider,
|
|
623
623
|
dependsOn: config.dependsOn,
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -4,18 +4,18 @@ export interface TalosProviderConfig {
|
|
|
4
4
|
/**
|
|
5
5
|
* The URL of Image Factory to generate schematics. If not set defaults to https://factory.talos.dev.
|
|
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#image_factory_url TalosProvider#image_factory_url}
|
|
8
8
|
*/
|
|
9
9
|
readonly imageFactoryUrl?: string;
|
|
10
10
|
/**
|
|
11
11
|
* Alias name
|
|
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#alias TalosProvider#alias}
|
|
14
14
|
*/
|
|
15
15
|
readonly alias?: 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 talos}
|
|
19
19
|
*/
|
|
20
20
|
export declare class TalosProvider extends cdktf.TerraformProvider {
|
|
21
21
|
static readonly tfResourceType = "talos";
|
|
@@ -23,12 +23,12 @@ export declare class TalosProvider extends cdktf.TerraformProvider {
|
|
|
23
23
|
* Generates CDKTF code for importing a TalosProvider 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 TalosProvider to import
|
|
26
|
-
* @param importFromId The id of the existing TalosProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
26
|
+
* @param importFromId The id of the existing TalosProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs#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 TalosProvider 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 talos} 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
|
package/dist/provider/index.js
CHANGED
|
@@ -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
|
|
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 talos}
|
|
6
6
|
*/
|
|
7
7
|
export class TalosProvider extends cdktf.TerraformProvider {
|
|
8
8
|
// =================
|
|
@@ -16,7 +16,7 @@ export class TalosProvider extends cdktf.TerraformProvider {
|
|
|
16
16
|
* Generates CDKTF code for importing a TalosProvider 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 TalosProvider to import
|
|
19
|
-
* @param importFromId The id of the existing TalosProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.
|
|
19
|
+
* @param importFromId The id of the existing TalosProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/siderolabs/talos/0.10.0/docs#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 TalosProvider to import is found
|
|
21
21
|
*/
|
|
22
22
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -26,7 +26,7 @@ export class TalosProvider extends cdktf.TerraformProvider {
|
|
|
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 talos} 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 TalosProvider extends cdktf.TerraformProvider {
|
|
|
37
37
|
terraformResourceType: 'talos',
|
|
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
|
terraformProviderSource: 'siderolabs/talos'
|
|
44
44
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdktf-providers/siderolabs-talos",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Prebuilt siderolabs/talos Provider for Terraform CDK (cdktf)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"isDeprecated": false,
|
|
46
46
|
"provider": {
|
|
47
47
|
"name": "registry.terraform.io/siderolabs/talos",
|
|
48
|
-
"version": "0.
|
|
48
|
+
"version": "0.10.0"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
}
|