@cdktn/provider-helm 14.0.0 → 14.0.3

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/lib/index.d.ts CHANGED
@@ -2,6 +2,6 @@
2
2
  * Copyright IBM Corp. 2021, 2026
3
3
  * SPDX-License-Identifier: MPL-2.0
4
4
  */
5
- export * as release from './release';
6
- export * as dataHelmTemplate from './data-helm-template';
7
- export * as provider from './provider';
5
+ export * as release from './release/index';
6
+ export * as dataHelmTemplate from './data-helm-template/index';
7
+ export * as provider from './provider/index';
package/lib/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  exports.provider = exports.dataHelmTemplate = exports.release = void 0;
8
8
  // generated by cdktn get
9
- exports.release = require("./release");
10
- exports.dataHelmTemplate = require("./data-helm-template");
11
- exports.provider = require("./provider");
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBOzs7R0FHRzs7O0FBRUgseUJBQXlCO0FBQ3pCLHVDQUFxQztBQUNyQywyREFBeUQ7QUFDekQseUNBQXVDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBDb3B5cmlnaHQgSUJNIENvcnAuIDIwMjEsIDIwMjZcbiAqIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBNUEwtMi4wXG4gKi9cblxuLy8gZ2VuZXJhdGVkIGJ5IGNka3RuIGdldFxuZXhwb3J0ICogYXMgcmVsZWFzZSBmcm9tICcuL3JlbGVhc2UnO1xuZXhwb3J0ICogYXMgZGF0YUhlbG1UZW1wbGF0ZSBmcm9tICcuL2RhdGEtaGVsbS10ZW1wbGF0ZSc7XG5leHBvcnQgKiBhcyBwcm92aWRlciBmcm9tICcuL3Byb3ZpZGVyJztcblxuIl19
9
+ exports.release = require("./release/index");
10
+ exports.dataHelmTemplate = require("./data-helm-template/index");
11
+ exports.provider = require("./provider/index");
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBOzs7R0FHRzs7O0FBRUgseUJBQXlCO0FBQ3pCLDZDQUEyQztBQUMzQyxpRUFBK0Q7QUFDL0QsK0NBQTZDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBDb3B5cmlnaHQgSUJNIENvcnAuIDIwMjEsIDIwMjZcbiAqIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBNUEwtMi4wXG4gKi9cblxuLy8gZ2VuZXJhdGVkIGJ5IGNka3RuIGdldFxuZXhwb3J0ICogYXMgcmVsZWFzZSBmcm9tICcuL3JlbGVhc2UvaW5kZXgnO1xuZXhwb3J0ICogYXMgZGF0YUhlbG1UZW1wbGF0ZSBmcm9tICcuL2RhdGEtaGVsbS10ZW1wbGF0ZS9pbmRleCc7XG5leHBvcnQgKiBhcyBwcm92aWRlciBmcm9tICcuL3Byb3ZpZGVyL2luZGV4JztcblxuIl19
@@ -8,73 +8,73 @@ export interface HelmProviderConfig {
8
8
  /**
9
9
  * Helm burst limit. Increase this if you have a cluster with many CRDs
10
10
  *
11
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#burst_limit HelmProvider#burst_limit}
11
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#burst_limit HelmProvider#burst_limit}
12
12
  */
13
13
  readonly burstLimit?: number;
14
14
  /**
15
15
  * Debug indicates whether or not Helm is running in Debug mode.
16
16
  *
17
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#debug HelmProvider#debug}
17
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#debug HelmProvider#debug}
18
18
  */
19
19
  readonly debug?: boolean | cdktn.IResolvable;
20
20
  /**
21
21
  * Enable and disable experimental features.
22
22
  *
23
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#experiments HelmProvider#experiments}
23
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#experiments HelmProvider#experiments}
24
24
  */
25
25
  readonly experiments?: HelmProviderExperiments;
26
26
  /**
27
27
  * The backend storage driver. Values are: configmap, secret, memory, sql
28
28
  *
29
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#helm_driver HelmProvider#helm_driver}
29
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#helm_driver HelmProvider#helm_driver}
30
30
  */
31
31
  readonly helmDriver?: string;
32
32
  /**
33
33
  * Kubernetes Configuration
34
34
  *
35
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#kubernetes HelmProvider#kubernetes}
35
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#kubernetes HelmProvider#kubernetes}
36
36
  */
37
37
  readonly kubernetes?: HelmProviderKubernetes;
38
38
  /**
39
39
  * The path to the helm plugins directory
40
40
  *
41
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#plugins_path HelmProvider#plugins_path}
41
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#plugins_path HelmProvider#plugins_path}
42
42
  */
43
43
  readonly pluginsPath?: string;
44
44
  /**
45
45
  * Queries per second used when communicating with the Kubernetes API. Can be used to avoid throttling.
46
46
  *
47
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#qps HelmProvider#qps}
47
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#qps HelmProvider#qps}
48
48
  */
49
49
  readonly qps?: number;
50
50
  /**
51
51
  * RegistryClient configuration.
52
52
  *
53
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#registries HelmProvider#registries}
53
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#registries HelmProvider#registries}
54
54
  */
55
55
  readonly registries?: HelmProviderRegistries[] | cdktn.IResolvable;
56
56
  /**
57
57
  * The path to the registry config file
58
58
  *
59
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#registry_config_path HelmProvider#registry_config_path}
59
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#registry_config_path HelmProvider#registry_config_path}
60
60
  */
61
61
  readonly registryConfigPath?: string;
62
62
  /**
63
63
  * The path to the file containing cached repository indexes
64
64
  *
65
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#repository_cache HelmProvider#repository_cache}
65
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#repository_cache HelmProvider#repository_cache}
66
66
  */
67
67
  readonly repositoryCache?: string;
68
68
  /**
69
69
  * The path to the file containing repository names and URLs
70
70
  *
71
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#repository_config_path HelmProvider#repository_config_path}
71
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#repository_config_path HelmProvider#repository_config_path}
72
72
  */
73
73
  readonly repositoryConfigPath?: string;
74
74
  /**
75
75
  * Alias name
76
76
  *
77
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#alias HelmProvider#alias}
77
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#alias HelmProvider#alias}
78
78
  */
79
79
  readonly alias?: string;
80
80
  }
@@ -82,7 +82,7 @@ export interface HelmProviderExperiments {
82
82
  /**
83
83
  * Enable full diff by storing the rendered manifest in the state.
84
84
  *
85
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#manifest HelmProvider#manifest}
85
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#manifest HelmProvider#manifest}
86
86
  */
87
87
  readonly manifest?: boolean | cdktn.IResolvable;
88
88
  }
@@ -92,25 +92,25 @@ export interface HelmProviderKubernetesExec {
92
92
  /**
93
93
  * API version for the exec plugin.
94
94
  *
95
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#api_version HelmProvider#api_version}
95
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#api_version HelmProvider#api_version}
96
96
  */
97
97
  readonly apiVersion: string;
98
98
  /**
99
99
  * Arguments for the exec plugin
100
100
  *
101
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#args HelmProvider#args}
101
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#args HelmProvider#args}
102
102
  */
103
103
  readonly args?: string[];
104
104
  /**
105
105
  * Command to run for Kubernetes exec plugin
106
106
  *
107
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#command HelmProvider#command}
107
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#command HelmProvider#command}
108
108
  */
109
109
  readonly command: string;
110
110
  /**
111
111
  * Environment variables for the exec plugin
112
112
  *
113
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#env HelmProvider#env}
113
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#env HelmProvider#env}
114
114
  */
115
115
  readonly env?: {
116
116
  [key: string]: string;
@@ -122,97 +122,97 @@ export interface HelmProviderKubernetes {
122
122
  /**
123
123
  * PEM-encoded client certificate for TLS authentication.
124
124
  *
125
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#client_certificate HelmProvider#client_certificate}
125
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#client_certificate HelmProvider#client_certificate}
126
126
  */
127
127
  readonly clientCertificate?: string;
128
128
  /**
129
129
  * PEM-encoded client certificate key for TLS authentication.
130
130
  *
131
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#client_key HelmProvider#client_key}
131
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#client_key HelmProvider#client_key}
132
132
  */
133
133
  readonly clientKey?: string;
134
134
  /**
135
135
  * PEM-encoded root certificates bundle for TLS authentication.
136
136
  *
137
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#cluster_ca_certificate HelmProvider#cluster_ca_certificate}
137
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#cluster_ca_certificate HelmProvider#cluster_ca_certificate}
138
138
  */
139
139
  readonly clusterCaCertificate?: string;
140
140
  /**
141
141
  * Context to choose from the config file. Can be sourced from KUBE_CTX.
142
142
  *
143
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#config_context HelmProvider#config_context}
143
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_context HelmProvider#config_context}
144
144
  */
145
145
  readonly configContext?: string;
146
146
  /**
147
147
  * Authentication info context of the kube config (name of the kubeconfig user, --user flag in kubectl). Can be sourced from KUBE_CTX_AUTH_INFO.
148
148
  *
149
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#config_context_auth_info HelmProvider#config_context_auth_info}
149
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_context_auth_info HelmProvider#config_context_auth_info}
150
150
  */
151
151
  readonly configContextAuthInfo?: string;
152
152
  /**
153
153
  * Cluster context of the kube config (name of the kubeconfig cluster, --cluster flag in kubectl). Can be sourced from KUBE_CTX_CLUSTER.
154
154
  *
155
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#config_context_cluster HelmProvider#config_context_cluster}
155
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_context_cluster HelmProvider#config_context_cluster}
156
156
  */
157
157
  readonly configContextCluster?: string;
158
158
  /**
159
159
  * Path to the kube config file. Can be set with KUBE_CONFIG_PATH.
160
160
  *
161
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#config_path HelmProvider#config_path}
161
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_path HelmProvider#config_path}
162
162
  */
163
163
  readonly configPath?: string;
164
164
  /**
165
165
  * A list of paths to kube config files. Can be set with KUBE_CONFIG_PATHS environment variable.
166
166
  *
167
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#config_paths HelmProvider#config_paths}
167
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_paths HelmProvider#config_paths}
168
168
  */
169
169
  readonly configPaths?: string[];
170
170
  /**
171
171
  * Exec configuration for Kubernetes authentication
172
172
  *
173
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#exec HelmProvider#exec}
173
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#exec HelmProvider#exec}
174
174
  */
175
175
  readonly exec?: HelmProviderKubernetesExec;
176
176
  /**
177
177
  * The hostname (in form of URI) of kubernetes master
178
178
  *
179
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#host HelmProvider#host}
179
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#host HelmProvider#host}
180
180
  */
181
181
  readonly host?: string;
182
182
  /**
183
183
  * Whether server should be accessed without verifying the TLS certificate.
184
184
  *
185
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#insecure HelmProvider#insecure}
185
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#insecure HelmProvider#insecure}
186
186
  */
187
187
  readonly insecure?: boolean | cdktn.IResolvable;
188
188
  /**
189
189
  * The password to use for HTTP basic authentication when accessing the Kubernetes master endpoint.
190
190
  *
191
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#password HelmProvider#password}
191
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#password HelmProvider#password}
192
192
  */
193
193
  readonly password?: string;
194
194
  /**
195
195
  * URL to the proxy to be used for all API requests.
196
196
  *
197
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#proxy_url HelmProvider#proxy_url}
197
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#proxy_url HelmProvider#proxy_url}
198
198
  */
199
199
  readonly proxyUrl?: string;
200
200
  /**
201
201
  * Server name passed to the server for SNI and is used in the client to check server certificates against.
202
202
  *
203
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#tls_server_name HelmProvider#tls_server_name}
203
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#tls_server_name HelmProvider#tls_server_name}
204
204
  */
205
205
  readonly tlsServerName?: string;
206
206
  /**
207
207
  * Token to authenticate a service account.
208
208
  *
209
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#token HelmProvider#token}
209
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#token HelmProvider#token}
210
210
  */
211
211
  readonly token?: string;
212
212
  /**
213
213
  * The username to use for HTTP basic authentication when accessing the Kubernetes master endpoint
214
214
  *
215
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#username HelmProvider#username}
215
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#username HelmProvider#username}
216
216
  */
217
217
  readonly username?: string;
218
218
  }
@@ -222,26 +222,26 @@ export interface HelmProviderRegistries {
222
222
  /**
223
223
  * The password to use for the OCI HTTP basic authentication when accessing the Kubernetes master endpoint.
224
224
  *
225
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#password HelmProvider#password}
225
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#password HelmProvider#password}
226
226
  */
227
227
  readonly password: string;
228
228
  /**
229
229
  * OCI URL in form of oci://host:port or oci://host
230
230
  *
231
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#url HelmProvider#url}
231
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#url HelmProvider#url}
232
232
  */
233
233
  readonly url: string;
234
234
  /**
235
235
  * The username to use for the OCI HTTP basic authentication when accessing the Kubernetes master endpoint.
236
236
  *
237
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#username HelmProvider#username}
237
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#username HelmProvider#username}
238
238
  */
239
239
  readonly username: string;
240
240
  }
241
241
  export declare function helmProviderRegistriesToTerraform(struct?: HelmProviderRegistries | cdktn.IResolvable): any;
242
242
  export declare function helmProviderRegistriesToHclTerraform(struct?: HelmProviderRegistries | cdktn.IResolvable): any;
243
243
  /**
244
- * Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs helm}
244
+ * Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs helm}
245
245
  */
246
246
  export declare class HelmProvider extends cdktn.TerraformProvider {
247
247
  static readonly tfResourceType = "helm";
@@ -249,12 +249,12 @@ export declare class HelmProvider extends cdktn.TerraformProvider {
249
249
  * Generates CDKTN code for importing a HelmProvider resource upon running "cdktn plan <stack-name>"
250
250
  * @param scope The scope in which to define this construct
251
251
  * @param importToId The construct id used in the generated config for the HelmProvider to import
252
- * @param importFromId The id of the existing HelmProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs#import import section} in the documentation of this resource for the id to use
252
+ * @param importFromId The id of the existing HelmProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#import import section} in the documentation of this resource for the id to use
253
253
  * @param provider? Optional instance of the provider where the HelmProvider to import is found
254
254
  */
255
255
  static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktn.TerraformProvider): cdktn.ImportableResource;
256
256
  /**
257
- * Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.1/docs helm} Resource
257
+ * Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs helm} Resource
258
258
  *
259
259
  * @param scope The scope in which to define this construct
260
260
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope