@cdktn/provider-helm 14.0.3 → 14.1.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/.jsii +172 -172
- package/README.md +3 -3
- package/lib/data-helm-template/index.d.ts +62 -62
- package/lib/data-helm-template/index.js +16 -16
- package/lib/provider/index.d.ts +39 -39
- package/lib/provider/index.js +6 -6
- package/lib/release/index.d.ts +64 -64
- package/lib/release/index.js +17 -17
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
# CDKTN prebuilt bindings for hashicorp/helm provider version 3.
|
|
2
|
+
# CDKTN prebuilt bindings for hashicorp/helm provider version 3.2.0
|
|
3
3
|
|
|
4
|
-
This repo builds and publishes the [Terraform helm provider](https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
4
|
+
This repo builds and publishes the [Terraform helm provider](https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs) bindings for [CDK Terrain](https://cdktn.io).
|
|
5
5
|
|
|
6
6
|
## Available Packages
|
|
7
7
|
|
|
@@ -63,7 +63,7 @@ This project is explicitly not tracking the Terraform helm provider version 1:1.
|
|
|
63
63
|
These are the upstream dependencies:
|
|
64
64
|
|
|
65
65
|
- [CDK Terrain](https://cdktn.io) - Last official release
|
|
66
|
-
- [Terraform helm provider](https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
66
|
+
- [Terraform helm provider](https://registry.terraform.io/providers/hashicorp/helm/3.2.0)
|
|
67
67
|
- [Terraform Engine](https://terraform.io)
|
|
68
68
|
|
|
69
69
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
|
@@ -8,97 +8,97 @@ export interface DataHelmTemplateConfig extends cdktn.TerraformMetaArguments {
|
|
|
8
8
|
/**
|
|
9
9
|
* Kubernetes api versions used for Capabilities.APIVersions.
|
|
10
10
|
*
|
|
11
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
11
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#api_versions DataHelmTemplate#api_versions}
|
|
12
12
|
*/
|
|
13
13
|
readonly apiVersions?: string[];
|
|
14
14
|
/**
|
|
15
15
|
* If set, the installation process purges the chart on fail. The 'wait' flag will be set automatically if 'atomic' is used.
|
|
16
16
|
*
|
|
17
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
17
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#atomic DataHelmTemplate#atomic}
|
|
18
18
|
*/
|
|
19
19
|
readonly atomic?: boolean | cdktn.IResolvable;
|
|
20
20
|
/**
|
|
21
21
|
* Chart name to be installed. A path may be used.
|
|
22
22
|
*
|
|
23
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
23
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#chart DataHelmTemplate#chart}
|
|
24
24
|
*/
|
|
25
25
|
readonly chart: string;
|
|
26
26
|
/**
|
|
27
27
|
* List of rendered CRDs from the chart.
|
|
28
28
|
*
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#crds DataHelmTemplate#crds}
|
|
30
30
|
*/
|
|
31
31
|
readonly crds?: string[];
|
|
32
32
|
/**
|
|
33
33
|
* Create the namespace if it does not exist.
|
|
34
34
|
*
|
|
35
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
35
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#create_namespace DataHelmTemplate#create_namespace}
|
|
36
36
|
*/
|
|
37
37
|
readonly createNamespace?: boolean | cdktn.IResolvable;
|
|
38
38
|
/**
|
|
39
39
|
* Run helm dependency update before installing the chart.
|
|
40
40
|
*
|
|
41
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
41
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#dependency_update DataHelmTemplate#dependency_update}
|
|
42
42
|
*/
|
|
43
43
|
readonly dependencyUpdate?: boolean | cdktn.IResolvable;
|
|
44
44
|
/**
|
|
45
45
|
* Add a custom description.
|
|
46
46
|
*
|
|
47
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
47
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#description DataHelmTemplate#description}
|
|
48
48
|
*/
|
|
49
49
|
readonly description?: string;
|
|
50
50
|
/**
|
|
51
51
|
* Use chart development versions, too. Equivalent to version '>0.0.0-0'. If `version` is set, this is ignored.
|
|
52
52
|
*
|
|
53
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
53
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#devel DataHelmTemplate#devel}
|
|
54
54
|
*/
|
|
55
55
|
readonly devel?: boolean | cdktn.IResolvable;
|
|
56
56
|
/**
|
|
57
57
|
* If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema.
|
|
58
58
|
*
|
|
59
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
59
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#disable_openapi_validation DataHelmTemplate#disable_openapi_validation}
|
|
60
60
|
*/
|
|
61
61
|
readonly disableOpenapiValidation?: boolean | cdktn.IResolvable;
|
|
62
62
|
/**
|
|
63
63
|
* Prevent hooks from running.
|
|
64
64
|
*
|
|
65
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
65
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#disable_webhooks DataHelmTemplate#disable_webhooks}
|
|
66
66
|
*/
|
|
67
67
|
readonly disableWebhooks?: boolean | cdktn.IResolvable;
|
|
68
68
|
/**
|
|
69
69
|
* Include CRDs in the templated output.
|
|
70
70
|
*
|
|
71
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
71
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#include_crds DataHelmTemplate#include_crds}
|
|
72
72
|
*/
|
|
73
73
|
readonly includeCrds?: boolean | cdktn.IResolvable;
|
|
74
74
|
/**
|
|
75
75
|
* Set .Release.IsUpgrade instead of .Release.IsInstall.
|
|
76
76
|
*
|
|
77
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
77
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#is_upgrade DataHelmTemplate#is_upgrade}
|
|
78
78
|
*/
|
|
79
79
|
readonly isUpgrade?: boolean | cdktn.IResolvable;
|
|
80
80
|
/**
|
|
81
81
|
* Location of public keys used for verification. Used only if `verify` is true.
|
|
82
82
|
*
|
|
83
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
83
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#keyring DataHelmTemplate#keyring}
|
|
84
84
|
*/
|
|
85
85
|
readonly keyring?: string;
|
|
86
86
|
/**
|
|
87
87
|
* Kubernetes version used for Capabilities.KubeVersion.
|
|
88
88
|
*
|
|
89
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
89
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#kube_version DataHelmTemplate#kube_version}
|
|
90
90
|
*/
|
|
91
91
|
readonly kubeVersion?: string;
|
|
92
92
|
/**
|
|
93
93
|
* Concatenated rendered chart templates. This corresponds to the output of the `helm template` command.
|
|
94
94
|
*
|
|
95
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
95
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#manifest DataHelmTemplate#manifest}
|
|
96
96
|
*/
|
|
97
97
|
readonly manifest?: string;
|
|
98
98
|
/**
|
|
99
99
|
* Map of rendered chart templates indexed by the template name.
|
|
100
100
|
*
|
|
101
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
101
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#manifests DataHelmTemplate#manifests}
|
|
102
102
|
*/
|
|
103
103
|
readonly manifests?: {
|
|
104
104
|
[key: string]: string;
|
|
@@ -106,173 +106,173 @@ export interface DataHelmTemplateConfig extends cdktn.TerraformMetaArguments {
|
|
|
106
106
|
/**
|
|
107
107
|
* Release name
|
|
108
108
|
*
|
|
109
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
109
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#name DataHelmTemplate#name}
|
|
110
110
|
*/
|
|
111
111
|
readonly name: string;
|
|
112
112
|
/**
|
|
113
113
|
* Namespace to install the release into.
|
|
114
114
|
*
|
|
115
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
115
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#namespace DataHelmTemplate#namespace}
|
|
116
116
|
*/
|
|
117
117
|
readonly namespace?: string;
|
|
118
118
|
/**
|
|
119
119
|
* Rendered notes if the chart contains a `NOTES.txt`.
|
|
120
120
|
*
|
|
121
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
121
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#notes DataHelmTemplate#notes}
|
|
122
122
|
*/
|
|
123
123
|
readonly notes?: string;
|
|
124
124
|
/**
|
|
125
125
|
* Pass credentials to all domains
|
|
126
126
|
*
|
|
127
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
127
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#pass_credentials DataHelmTemplate#pass_credentials}
|
|
128
128
|
*/
|
|
129
129
|
readonly passCredentials?: boolean | cdktn.IResolvable;
|
|
130
130
|
/**
|
|
131
131
|
* Postrender command config
|
|
132
132
|
*
|
|
133
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#postrender DataHelmTemplate#postrender}
|
|
134
134
|
*/
|
|
135
135
|
readonly postrender?: DataHelmTemplatePostrender;
|
|
136
136
|
/**
|
|
137
137
|
* If set, render subchart notes along with the parent.
|
|
138
138
|
*
|
|
139
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
139
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#render_subchart_notes DataHelmTemplate#render_subchart_notes}
|
|
140
140
|
*/
|
|
141
141
|
readonly renderSubchartNotes?: boolean | cdktn.IResolvable;
|
|
142
142
|
/**
|
|
143
143
|
* Re-use the given name, even if that name is already used. This is unsafe in production.
|
|
144
144
|
*
|
|
145
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
145
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#replace DataHelmTemplate#replace}
|
|
146
146
|
*/
|
|
147
147
|
readonly replace?: boolean | cdktn.IResolvable;
|
|
148
148
|
/**
|
|
149
149
|
* Repository where to locate the requested chart. If it is a URL the chart is installed without installing the repository.
|
|
150
150
|
*
|
|
151
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
151
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#repository DataHelmTemplate#repository}
|
|
152
152
|
*/
|
|
153
153
|
readonly repository?: string;
|
|
154
154
|
/**
|
|
155
155
|
* The repository's CA file
|
|
156
156
|
*
|
|
157
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
157
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#repository_ca_file DataHelmTemplate#repository_ca_file}
|
|
158
158
|
*/
|
|
159
159
|
readonly repositoryCaFile?: string;
|
|
160
160
|
/**
|
|
161
161
|
* The repository's cert file
|
|
162
162
|
*
|
|
163
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
163
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#repository_cert_file DataHelmTemplate#repository_cert_file}
|
|
164
164
|
*/
|
|
165
165
|
readonly repositoryCertFile?: string;
|
|
166
166
|
/**
|
|
167
167
|
* The repository's cert key file
|
|
168
168
|
*
|
|
169
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
169
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#repository_key_file DataHelmTemplate#repository_key_file}
|
|
170
170
|
*/
|
|
171
171
|
readonly repositoryKeyFile?: string;
|
|
172
172
|
/**
|
|
173
173
|
* Password for HTTP basic authentication
|
|
174
174
|
*
|
|
175
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
175
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#repository_password DataHelmTemplate#repository_password}
|
|
176
176
|
*/
|
|
177
177
|
readonly repositoryPassword?: string;
|
|
178
178
|
/**
|
|
179
179
|
* Username for HTTP basic authentication
|
|
180
180
|
*
|
|
181
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
181
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#repository_username DataHelmTemplate#repository_username}
|
|
182
182
|
*/
|
|
183
183
|
readonly repositoryUsername?: string;
|
|
184
184
|
/**
|
|
185
185
|
* When upgrading, reset the values to the ones built into the chart.
|
|
186
186
|
*
|
|
187
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
187
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#reset_values DataHelmTemplate#reset_values}
|
|
188
188
|
*/
|
|
189
189
|
readonly resetValues?: boolean | cdktn.IResolvable;
|
|
190
190
|
/**
|
|
191
191
|
* When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored.
|
|
192
192
|
*
|
|
193
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
193
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#reuse_values DataHelmTemplate#reuse_values}
|
|
194
194
|
*/
|
|
195
195
|
readonly reuseValues?: boolean | cdktn.IResolvable;
|
|
196
196
|
/**
|
|
197
197
|
* Custom values to be merged with the values
|
|
198
198
|
*
|
|
199
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
199
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#set DataHelmTemplate#set}
|
|
200
200
|
*/
|
|
201
201
|
readonly set?: DataHelmTemplateSet[] | cdktn.IResolvable;
|
|
202
202
|
/**
|
|
203
203
|
* Custom sensitive values to be merged with the values
|
|
204
204
|
*
|
|
205
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
205
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#set_list DataHelmTemplate#set_list}
|
|
206
206
|
*/
|
|
207
207
|
readonly setList?: DataHelmTemplateSetListStruct[] | cdktn.IResolvable;
|
|
208
208
|
/**
|
|
209
209
|
* Custom sensitive values to be merged with the values
|
|
210
210
|
*
|
|
211
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
211
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#set_sensitive DataHelmTemplate#set_sensitive}
|
|
212
212
|
*/
|
|
213
213
|
readonly setSensitive?: DataHelmTemplateSetSensitive[] | cdktn.IResolvable;
|
|
214
214
|
/**
|
|
215
215
|
* Write-only custom values to be merged with the values.
|
|
216
216
|
*
|
|
217
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
217
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#set_wo DataHelmTemplate#set_wo}
|
|
218
218
|
*/
|
|
219
219
|
readonly setWo?: DataHelmTemplateSetWo[] | cdktn.IResolvable;
|
|
220
220
|
/**
|
|
221
221
|
* Only show manifests rendered from the given templates.
|
|
222
222
|
*
|
|
223
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
223
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#show_only DataHelmTemplate#show_only}
|
|
224
224
|
*/
|
|
225
225
|
readonly showOnly?: string[];
|
|
226
226
|
/**
|
|
227
227
|
* If set, no CRDs will be installed. By default, CRDs are installed if not already present.
|
|
228
228
|
*
|
|
229
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
229
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#skip_crds DataHelmTemplate#skip_crds}
|
|
230
230
|
*/
|
|
231
231
|
readonly skipCrds?: boolean | cdktn.IResolvable;
|
|
232
232
|
/**
|
|
233
233
|
* If set, tests will not be rendered. By default, tests are rendered.
|
|
234
234
|
*
|
|
235
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
235
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#skip_tests DataHelmTemplate#skip_tests}
|
|
236
236
|
*/
|
|
237
237
|
readonly skipTests?: boolean | cdktn.IResolvable;
|
|
238
238
|
/**
|
|
239
239
|
* Time in seconds to wait for any individual Kubernetes operation.
|
|
240
240
|
*
|
|
241
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
241
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#timeout DataHelmTemplate#timeout}
|
|
242
242
|
*/
|
|
243
243
|
readonly timeout?: number;
|
|
244
244
|
/**
|
|
245
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
245
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#timeouts DataHelmTemplate#timeouts}
|
|
246
246
|
*/
|
|
247
247
|
readonly timeouts?: DataHelmTemplateTimeouts;
|
|
248
248
|
/**
|
|
249
249
|
* Validate your manifests against the Kubernetes cluster you are currently pointing at. This is the same validation performed on an install.
|
|
250
250
|
*
|
|
251
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
251
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#validate DataHelmTemplate#validate}
|
|
252
252
|
*/
|
|
253
253
|
readonly validate?: boolean | cdktn.IResolvable;
|
|
254
254
|
/**
|
|
255
255
|
* List of values in raw yaml format to pass to helm.
|
|
256
256
|
*
|
|
257
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
257
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#values DataHelmTemplate#values}
|
|
258
258
|
*/
|
|
259
259
|
readonly values?: string[];
|
|
260
260
|
/**
|
|
261
261
|
* Verify the package before installing it.
|
|
262
262
|
*
|
|
263
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
263
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#verify DataHelmTemplate#verify}
|
|
264
264
|
*/
|
|
265
265
|
readonly verify?: boolean | cdktn.IResolvable;
|
|
266
266
|
/**
|
|
267
267
|
* Specify the exact chart version to install. If this is not specified, the latest version is installed.
|
|
268
268
|
*
|
|
269
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
269
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#version DataHelmTemplate#version}
|
|
270
270
|
*/
|
|
271
271
|
readonly version?: string;
|
|
272
272
|
/**
|
|
273
273
|
* Will wait until all resources are in a ready state before marking the release as successful.
|
|
274
274
|
*
|
|
275
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
275
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#wait DataHelmTemplate#wait}
|
|
276
276
|
*/
|
|
277
277
|
readonly wait?: boolean | cdktn.IResolvable;
|
|
278
278
|
}
|
|
@@ -280,13 +280,13 @@ export interface DataHelmTemplatePostrender {
|
|
|
280
280
|
/**
|
|
281
281
|
* An argument to the post-renderer (can specify multiple)
|
|
282
282
|
*
|
|
283
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
283
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#args DataHelmTemplate#args}
|
|
284
284
|
*/
|
|
285
285
|
readonly args?: string[];
|
|
286
286
|
/**
|
|
287
287
|
* The common binary path
|
|
288
288
|
*
|
|
289
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
289
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#binary_path DataHelmTemplate#binary_path}
|
|
290
290
|
*/
|
|
291
291
|
readonly binaryPath: string;
|
|
292
292
|
}
|
|
@@ -314,15 +314,15 @@ export declare class DataHelmTemplatePostrenderOutputReference extends cdktn.Com
|
|
|
314
314
|
}
|
|
315
315
|
export interface DataHelmTemplateSet {
|
|
316
316
|
/**
|
|
317
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
317
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#name DataHelmTemplate#name}
|
|
318
318
|
*/
|
|
319
319
|
readonly name: string;
|
|
320
320
|
/**
|
|
321
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
321
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#type DataHelmTemplate#type}
|
|
322
322
|
*/
|
|
323
323
|
readonly type?: string;
|
|
324
324
|
/**
|
|
325
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
325
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#value DataHelmTemplate#value}
|
|
326
326
|
*/
|
|
327
327
|
readonly value?: string;
|
|
328
328
|
}
|
|
@@ -370,11 +370,11 @@ export declare class DataHelmTemplateSetList extends cdktn.ComplexList {
|
|
|
370
370
|
}
|
|
371
371
|
export interface DataHelmTemplateSetListStruct {
|
|
372
372
|
/**
|
|
373
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
373
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#name DataHelmTemplate#name}
|
|
374
374
|
*/
|
|
375
375
|
readonly name?: string;
|
|
376
376
|
/**
|
|
377
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
377
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#value DataHelmTemplate#value}
|
|
378
378
|
*/
|
|
379
379
|
readonly value: string[];
|
|
380
380
|
}
|
|
@@ -417,15 +417,15 @@ export declare class DataHelmTemplateSetListStructList extends cdktn.ComplexList
|
|
|
417
417
|
}
|
|
418
418
|
export interface DataHelmTemplateSetSensitive {
|
|
419
419
|
/**
|
|
420
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
420
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#name DataHelmTemplate#name}
|
|
421
421
|
*/
|
|
422
422
|
readonly name: string;
|
|
423
423
|
/**
|
|
424
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
424
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#type DataHelmTemplate#type}
|
|
425
425
|
*/
|
|
426
426
|
readonly type?: string;
|
|
427
427
|
/**
|
|
428
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
428
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#value DataHelmTemplate#value}
|
|
429
429
|
*/
|
|
430
430
|
readonly value: string;
|
|
431
431
|
}
|
|
@@ -472,15 +472,15 @@ export declare class DataHelmTemplateSetSensitiveList extends cdktn.ComplexList
|
|
|
472
472
|
}
|
|
473
473
|
export interface DataHelmTemplateSetWo {
|
|
474
474
|
/**
|
|
475
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
475
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#name DataHelmTemplate#name}
|
|
476
476
|
*/
|
|
477
477
|
readonly name: string;
|
|
478
478
|
/**
|
|
479
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
479
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#type DataHelmTemplate#type}
|
|
480
480
|
*/
|
|
481
481
|
readonly type?: string;
|
|
482
482
|
/**
|
|
483
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
483
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#value DataHelmTemplate#value}
|
|
484
484
|
*/
|
|
485
485
|
readonly value: string;
|
|
486
486
|
}
|
|
@@ -529,7 +529,7 @@ export interface DataHelmTemplateTimeouts {
|
|
|
529
529
|
/**
|
|
530
530
|
* 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).
|
|
531
531
|
*
|
|
532
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
532
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#read DataHelmTemplate#read}
|
|
533
533
|
*/
|
|
534
534
|
readonly read?: string;
|
|
535
535
|
}
|
|
@@ -552,7 +552,7 @@ export declare class DataHelmTemplateTimeoutsOutputReference extends cdktn.Compl
|
|
|
552
552
|
get readInput(): string | undefined;
|
|
553
553
|
}
|
|
554
554
|
/**
|
|
555
|
-
* Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
555
|
+
* Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template helm_template}
|
|
556
556
|
*/
|
|
557
557
|
export declare class DataHelmTemplate extends cdktn.TerraformDataSource {
|
|
558
558
|
static readonly tfResourceType = "helm_template";
|
|
@@ -560,12 +560,12 @@ export declare class DataHelmTemplate extends cdktn.TerraformDataSource {
|
|
|
560
560
|
* Generates CDKTN code for importing a DataHelmTemplate resource upon running "cdktn plan <stack-name>"
|
|
561
561
|
* @param scope The scope in which to define this construct
|
|
562
562
|
* @param importToId The construct id used in the generated config for the DataHelmTemplate to import
|
|
563
|
-
* @param importFromId The id of the existing DataHelmTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
563
|
+
* @param importFromId The id of the existing DataHelmTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template#import import section} in the documentation of this resource for the id to use
|
|
564
564
|
* @param provider? Optional instance of the provider where the DataHelmTemplate to import is found
|
|
565
565
|
*/
|
|
566
566
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktn.TerraformProvider): cdktn.ImportableResource;
|
|
567
567
|
/**
|
|
568
|
-
* Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
568
|
+
* Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/data-sources/template helm_template} Data Source
|
|
569
569
|
*
|
|
570
570
|
* @param scope The scope in which to define this construct
|
|
571
571
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|