@cdktn/provider-helm 13.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/.jsii +185 -558
- package/README.md +3 -3
- package/lib/data-helm-template/index.d.ts +62 -74
- package/lib/data-helm-template/index.js +16 -28
- package/lib/index.d.ts +3 -3
- package/lib/index.js +4 -4
- package/lib/provider/index.d.ts +39 -39
- package/lib/provider/index.js +6 -6
- package/lib/release/index.d.ts +64 -76
- package/lib/release/index.js +17 -29
- package/package.json +58 -38
package/.jsii
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"url": "https://cdktn.io"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"cdktn": "^0.
|
|
12
|
-
"constructs": "^10.
|
|
11
|
+
"cdktn": "^0.23.0",
|
|
12
|
+
"constructs": "^10.6.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
15
15
|
"cdktn": {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"stability": "stable"
|
|
73
73
|
},
|
|
74
74
|
"homepage": "https://github.com/cdktn-io/cdktn-provider-helm.git",
|
|
75
|
-
"jsiiVersion": "5.
|
|
75
|
+
"jsiiVersion": "5.9.42 (build fa17ba8)",
|
|
76
76
|
"keywords": [
|
|
77
77
|
"cdk",
|
|
78
78
|
"cdk-terrain",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
"name": "@cdktn/provider-helm",
|
|
96
96
|
"readme": {
|
|
97
|
-
"markdown": "\n# CDKTN prebuilt bindings for hashicorp/helm provider version 3.1.
|
|
97
|
+
"markdown": "\n# CDKTN prebuilt bindings for hashicorp/helm provider version 3.1.2\n\nThis repo builds and publishes the [Terraform helm provider](https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs) bindings for [CDK Terrain](https://cdktn.io).\n\n## Available Packages\n\n### NPM\n\nThe npm package is available at [https://www.npmjs.com/package/@cdktn/provider-helm](https://www.npmjs.com/package/@cdktn/provider-helm).\n\n`npm install @cdktn/provider-helm`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktn-provider-helm](https://pypi.org/project/cdktn-provider-helm).\n\n`pipenv install cdktn-provider-helm`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/Io.Cdktn.Providers.Helm](https://www.nuget.org/packages/Io.Cdktn.Providers.Helm).\n\n`dotnet add package Io.Cdktn.Providers.Helm`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-helm](https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-helm).\n\n```\n<dependency>\n <groupId>io.cdktn</groupId>\n <artifactId>cdktn-provider-helm</artifactId>\n <version>[REPLACE WITH DESIRED VERSION]</version>\n</dependency>\n```\n\n### Go\n\nThe go package is generated into the [`github.com/cdktn-io/cdktn-provider-helm-go`](https://github.com/cdktn-io/cdktn-provider-helm-go) package.\n\n`go get github.com/cdktn-io/cdktn-provider-helm-go/helm/<version>`\n\nWhere `<version>` is the version of the prebuilt provider you would like to use e.g. `v11`. The full module name can be found\nwithin the [go.mod](https://github.com/cdktn-io/cdktn-provider-helm-go/blob/main/helm/go.mod#L1) file.\n\n## Docs\n\nFind auto-generated docs for this provider here:\n\n- [Typescript](./docs/API.typescript.md)\n- [Python](./docs/API.python.md)\n- [Java](./docs/API.java.md)\n- [C#](./docs/API.csharp.md)\n- [Go](./docs/API.go.md)\n\nYou can also visit a hosted version of the documentation on [constructs.dev](https://constructs.dev/packages/@cdktn/provider-helm).\n\n## Versioning\n\nThis project is explicitly not tracking the Terraform helm provider version 1:1. In fact, it always tracks `latest` of `~> 3.0` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by [generating the provider constructs manually](https://cdktn.io/docs/concepts/providers#import-providers).\n\nThese are the upstream dependencies:\n\n- [CDK Terrain](https://cdktn.io) - Last official release\n- [Terraform helm provider](https://registry.terraform.io/providers/hashicorp/helm/3.1.2)\n- [Terraform Engine](https://terraform.io)\n\nIf there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.\n\n## Features / Issues / Bugs\n\nPlease report bugs and issues to the [CDK Terrain](https://cdktn.io) project:\n\n- [Create bug report](https://github.com/open-constructs/cdk-terrain/issues)\n- [Create feature request](https://github.com/open-constructs/cdk-terrain/issues)\n\n## Contributing\n\n### Projen\n\nThis is mostly based on [Projen](https://projen.io), which takes care of generating the entire repository.\n\n### cdktn-provider-project based on Projen\n\nThere's a custom [project builder](https://github.com/cdktn-io/cdktn-provider-project) which encapsulate the common settings for all `cdktn` prebuilt providers.\n\n### Provider Version\n\nThe provider version can be adjusted in [./.projenrc.js](./.projenrc.js).\n\n### Repository Management\n\nThe repository is managed by [CDKTN Repository Manager](https://github.com/cdktn-io/cdktn-repository-manager/).\n"
|
|
98
98
|
},
|
|
99
99
|
"repository": {
|
|
100
100
|
"type": "git",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"line": 8
|
|
109
109
|
},
|
|
110
110
|
"readme": {
|
|
111
|
-
"markdown": "# `data_helm_template`\n\nRefer to the Terraform Registry for docs: [`data_helm_template`](https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
111
|
+
"markdown": "# `data_helm_template`\n\nRefer to the Terraform Registry for docs: [`data_helm_template`](https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template).\n"
|
|
112
112
|
},
|
|
113
113
|
"symbolId": "src/data-helm-template/index:"
|
|
114
114
|
},
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"line": 9
|
|
119
119
|
},
|
|
120
120
|
"readme": {
|
|
121
|
-
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`helm`](https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
121
|
+
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`helm`](https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs).\n"
|
|
122
122
|
},
|
|
123
123
|
"symbolId": "src/provider/index:"
|
|
124
124
|
},
|
|
@@ -128,16 +128,27 @@
|
|
|
128
128
|
"line": 7
|
|
129
129
|
},
|
|
130
130
|
"readme": {
|
|
131
|
-
"markdown": "# `helm_release`\n\nRefer to the Terraform Registry for docs: [`helm_release`](https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
131
|
+
"markdown": "# `helm_release`\n\nRefer to the Terraform Registry for docs: [`helm_release`](https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release).\n"
|
|
132
132
|
},
|
|
133
133
|
"symbolId": "src/release/index:"
|
|
134
134
|
}
|
|
135
135
|
},
|
|
136
136
|
"targets": {
|
|
137
|
+
"dotnet": {
|
|
138
|
+
"namespace": "Io.Cdktn.Providers.Helm",
|
|
139
|
+
"packageId": "Io.Cdktn.Providers.Helm"
|
|
140
|
+
},
|
|
137
141
|
"go": {
|
|
138
142
|
"moduleName": "github.com/cdktn-io/cdktn-provider-helm-go",
|
|
139
143
|
"packageName": "helm"
|
|
140
144
|
},
|
|
145
|
+
"java": {
|
|
146
|
+
"maven": {
|
|
147
|
+
"artifactId": "cdktn-provider-helm",
|
|
148
|
+
"groupId": "io.cdktn"
|
|
149
|
+
},
|
|
150
|
+
"package": "io.cdktn.providers.helm"
|
|
151
|
+
},
|
|
141
152
|
"js": {
|
|
142
153
|
"npm": "@cdktn/provider-helm"
|
|
143
154
|
},
|
|
@@ -152,13 +163,13 @@
|
|
|
152
163
|
"base": "cdktn.TerraformDataSource",
|
|
153
164
|
"docs": {
|
|
154
165
|
"stability": "stable",
|
|
155
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
166
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template helm_template}."
|
|
156
167
|
},
|
|
157
168
|
"fqn": "@cdktn/provider-helm.dataHelmTemplate.DataHelmTemplate",
|
|
158
169
|
"initializer": {
|
|
159
170
|
"docs": {
|
|
160
171
|
"stability": "stable",
|
|
161
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
172
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template helm_template} Data Source."
|
|
162
173
|
},
|
|
163
174
|
"locationInModule": {
|
|
164
175
|
"filename": "src/data-helm-template/index.ts",
|
|
@@ -229,7 +240,7 @@
|
|
|
229
240
|
},
|
|
230
241
|
{
|
|
231
242
|
"docs": {
|
|
232
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
243
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#import import section} in the documentation of this resource for the id to use",
|
|
233
244
|
"summary": "The id of the existing DataHelmTemplate that should be imported."
|
|
234
245
|
},
|
|
235
246
|
"name": "importFromId",
|
|
@@ -2665,7 +2676,7 @@
|
|
|
2665
2676
|
{
|
|
2666
2677
|
"abstract": true,
|
|
2667
2678
|
"docs": {
|
|
2668
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2679
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#chart DataHelmTemplate#chart}",
|
|
2669
2680
|
"stability": "stable",
|
|
2670
2681
|
"summary": "Chart name to be installed. A path may be used."
|
|
2671
2682
|
},
|
|
@@ -2682,7 +2693,7 @@
|
|
|
2682
2693
|
{
|
|
2683
2694
|
"abstract": true,
|
|
2684
2695
|
"docs": {
|
|
2685
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2696
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#name DataHelmTemplate#name}",
|
|
2686
2697
|
"stability": "stable",
|
|
2687
2698
|
"summary": "Release name."
|
|
2688
2699
|
},
|
|
@@ -2699,7 +2710,7 @@
|
|
|
2699
2710
|
{
|
|
2700
2711
|
"abstract": true,
|
|
2701
2712
|
"docs": {
|
|
2702
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2713
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#api_versions DataHelmTemplate#api_versions}",
|
|
2703
2714
|
"stability": "stable",
|
|
2704
2715
|
"summary": "Kubernetes api versions used for Capabilities.APIVersions."
|
|
2705
2716
|
},
|
|
@@ -2722,7 +2733,7 @@
|
|
|
2722
2733
|
{
|
|
2723
2734
|
"abstract": true,
|
|
2724
2735
|
"docs": {
|
|
2725
|
-
"remarks": "The 'wait' flag will be set automatically if 'atomic' is used.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2736
|
+
"remarks": "The 'wait' flag will be set automatically if 'atomic' is used.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#atomic DataHelmTemplate#atomic}",
|
|
2726
2737
|
"stability": "stable",
|
|
2727
2738
|
"summary": "If set, the installation process purges the chart on fail."
|
|
2728
2739
|
},
|
|
@@ -2749,7 +2760,7 @@
|
|
|
2749
2760
|
{
|
|
2750
2761
|
"abstract": true,
|
|
2751
2762
|
"docs": {
|
|
2752
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2763
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#crds DataHelmTemplate#crds}",
|
|
2753
2764
|
"stability": "stable",
|
|
2754
2765
|
"summary": "List of rendered CRDs from the chart."
|
|
2755
2766
|
},
|
|
@@ -2772,7 +2783,7 @@
|
|
|
2772
2783
|
{
|
|
2773
2784
|
"abstract": true,
|
|
2774
2785
|
"docs": {
|
|
2775
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2786
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#create_namespace DataHelmTemplate#create_namespace}",
|
|
2776
2787
|
"stability": "stable",
|
|
2777
2788
|
"summary": "Create the namespace if it does not exist."
|
|
2778
2789
|
},
|
|
@@ -2799,7 +2810,7 @@
|
|
|
2799
2810
|
{
|
|
2800
2811
|
"abstract": true,
|
|
2801
2812
|
"docs": {
|
|
2802
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2813
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#dependency_update DataHelmTemplate#dependency_update}",
|
|
2803
2814
|
"stability": "stable",
|
|
2804
2815
|
"summary": "Run helm dependency update before installing the chart."
|
|
2805
2816
|
},
|
|
@@ -2826,7 +2837,7 @@
|
|
|
2826
2837
|
{
|
|
2827
2838
|
"abstract": true,
|
|
2828
2839
|
"docs": {
|
|
2829
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2840
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#description DataHelmTemplate#description}",
|
|
2830
2841
|
"stability": "stable",
|
|
2831
2842
|
"summary": "Add a custom description."
|
|
2832
2843
|
},
|
|
@@ -2844,7 +2855,7 @@
|
|
|
2844
2855
|
{
|
|
2845
2856
|
"abstract": true,
|
|
2846
2857
|
"docs": {
|
|
2847
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2858
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#devel DataHelmTemplate#devel}",
|
|
2848
2859
|
"stability": "stable",
|
|
2849
2860
|
"summary": "Use chart development versions, too. Equivalent to version '>0.0.0-0'. If `version` is set, this is ignored."
|
|
2850
2861
|
},
|
|
@@ -2871,7 +2882,7 @@
|
|
|
2871
2882
|
{
|
|
2872
2883
|
"abstract": true,
|
|
2873
2884
|
"docs": {
|
|
2874
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2885
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#disable_openapi_validation DataHelmTemplate#disable_openapi_validation}",
|
|
2875
2886
|
"stability": "stable",
|
|
2876
2887
|
"summary": "If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema."
|
|
2877
2888
|
},
|
|
@@ -2898,7 +2909,7 @@
|
|
|
2898
2909
|
{
|
|
2899
2910
|
"abstract": true,
|
|
2900
2911
|
"docs": {
|
|
2901
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2912
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#disable_webhooks DataHelmTemplate#disable_webhooks}",
|
|
2902
2913
|
"stability": "stable",
|
|
2903
2914
|
"summary": "Prevent hooks from running."
|
|
2904
2915
|
},
|
|
@@ -2925,7 +2936,7 @@
|
|
|
2925
2936
|
{
|
|
2926
2937
|
"abstract": true,
|
|
2927
2938
|
"docs": {
|
|
2928
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2939
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#include_crds DataHelmTemplate#include_crds}",
|
|
2929
2940
|
"stability": "stable",
|
|
2930
2941
|
"summary": "Include CRDs in the templated output."
|
|
2931
2942
|
},
|
|
@@ -2952,7 +2963,7 @@
|
|
|
2952
2963
|
{
|
|
2953
2964
|
"abstract": true,
|
|
2954
2965
|
"docs": {
|
|
2955
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2966
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#is_upgrade DataHelmTemplate#is_upgrade}",
|
|
2956
2967
|
"stability": "stable",
|
|
2957
2968
|
"summary": "Set .Release.IsUpgrade instead of .Release.IsInstall."
|
|
2958
2969
|
},
|
|
@@ -2979,7 +2990,7 @@
|
|
|
2979
2990
|
{
|
|
2980
2991
|
"abstract": true,
|
|
2981
2992
|
"docs": {
|
|
2982
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
2993
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#keyring DataHelmTemplate#keyring}",
|
|
2983
2994
|
"stability": "stable",
|
|
2984
2995
|
"summary": "Location of public keys used for verification. Used only if `verify` is true."
|
|
2985
2996
|
},
|
|
@@ -2997,7 +3008,7 @@
|
|
|
2997
3008
|
{
|
|
2998
3009
|
"abstract": true,
|
|
2999
3010
|
"docs": {
|
|
3000
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3011
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#kube_version DataHelmTemplate#kube_version}",
|
|
3001
3012
|
"stability": "stable",
|
|
3002
3013
|
"summary": "Kubernetes version used for Capabilities.KubeVersion."
|
|
3003
3014
|
},
|
|
@@ -3015,7 +3026,7 @@
|
|
|
3015
3026
|
{
|
|
3016
3027
|
"abstract": true,
|
|
3017
3028
|
"docs": {
|
|
3018
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3029
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#manifest DataHelmTemplate#manifest}",
|
|
3019
3030
|
"stability": "stable",
|
|
3020
3031
|
"summary": "Concatenated rendered chart templates. This corresponds to the output of the `helm template` command."
|
|
3021
3032
|
},
|
|
@@ -3033,7 +3044,7 @@
|
|
|
3033
3044
|
{
|
|
3034
3045
|
"abstract": true,
|
|
3035
3046
|
"docs": {
|
|
3036
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3047
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#manifests DataHelmTemplate#manifests}",
|
|
3037
3048
|
"stability": "stable",
|
|
3038
3049
|
"summary": "Map of rendered chart templates indexed by the template name."
|
|
3039
3050
|
},
|
|
@@ -3056,7 +3067,7 @@
|
|
|
3056
3067
|
{
|
|
3057
3068
|
"abstract": true,
|
|
3058
3069
|
"docs": {
|
|
3059
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3070
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#namespace DataHelmTemplate#namespace}",
|
|
3060
3071
|
"stability": "stable",
|
|
3061
3072
|
"summary": "Namespace to install the release into."
|
|
3062
3073
|
},
|
|
@@ -3074,7 +3085,7 @@
|
|
|
3074
3085
|
{
|
|
3075
3086
|
"abstract": true,
|
|
3076
3087
|
"docs": {
|
|
3077
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3088
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#notes DataHelmTemplate#notes}",
|
|
3078
3089
|
"stability": "stable",
|
|
3079
3090
|
"summary": "Rendered notes if the chart contains a `NOTES.txt`."
|
|
3080
3091
|
},
|
|
@@ -3092,7 +3103,7 @@
|
|
|
3092
3103
|
{
|
|
3093
3104
|
"abstract": true,
|
|
3094
3105
|
"docs": {
|
|
3095
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3106
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#pass_credentials DataHelmTemplate#pass_credentials}",
|
|
3096
3107
|
"stability": "stable",
|
|
3097
3108
|
"summary": "Pass credentials to all domains."
|
|
3098
3109
|
},
|
|
@@ -3119,7 +3130,7 @@
|
|
|
3119
3130
|
{
|
|
3120
3131
|
"abstract": true,
|
|
3121
3132
|
"docs": {
|
|
3122
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3133
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#postrender DataHelmTemplate#postrender}",
|
|
3123
3134
|
"stability": "stable",
|
|
3124
3135
|
"summary": "Postrender command config."
|
|
3125
3136
|
},
|
|
@@ -3137,7 +3148,7 @@
|
|
|
3137
3148
|
{
|
|
3138
3149
|
"abstract": true,
|
|
3139
3150
|
"docs": {
|
|
3140
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3151
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#render_subchart_notes DataHelmTemplate#render_subchart_notes}",
|
|
3141
3152
|
"stability": "stable",
|
|
3142
3153
|
"summary": "If set, render subchart notes along with the parent."
|
|
3143
3154
|
},
|
|
@@ -3164,7 +3175,7 @@
|
|
|
3164
3175
|
{
|
|
3165
3176
|
"abstract": true,
|
|
3166
3177
|
"docs": {
|
|
3167
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3178
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#replace DataHelmTemplate#replace}",
|
|
3168
3179
|
"stability": "stable",
|
|
3169
3180
|
"summary": "Re-use the given name, even if that name is already used. This is unsafe in production."
|
|
3170
3181
|
},
|
|
@@ -3191,7 +3202,7 @@
|
|
|
3191
3202
|
{
|
|
3192
3203
|
"abstract": true,
|
|
3193
3204
|
"docs": {
|
|
3194
|
-
"remarks": "If it is a URL the chart is installed without installing the repository.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3205
|
+
"remarks": "If it is a URL the chart is installed without installing the repository.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#repository DataHelmTemplate#repository}",
|
|
3195
3206
|
"stability": "stable",
|
|
3196
3207
|
"summary": "Repository where to locate the requested chart."
|
|
3197
3208
|
},
|
|
@@ -3209,7 +3220,7 @@
|
|
|
3209
3220
|
{
|
|
3210
3221
|
"abstract": true,
|
|
3211
3222
|
"docs": {
|
|
3212
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3223
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#repository_ca_file DataHelmTemplate#repository_ca_file}",
|
|
3213
3224
|
"stability": "stable",
|
|
3214
3225
|
"summary": "The repository's CA file."
|
|
3215
3226
|
},
|
|
@@ -3227,7 +3238,7 @@
|
|
|
3227
3238
|
{
|
|
3228
3239
|
"abstract": true,
|
|
3229
3240
|
"docs": {
|
|
3230
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3241
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#repository_cert_file DataHelmTemplate#repository_cert_file}",
|
|
3231
3242
|
"stability": "stable",
|
|
3232
3243
|
"summary": "The repository's cert file."
|
|
3233
3244
|
},
|
|
@@ -3245,7 +3256,7 @@
|
|
|
3245
3256
|
{
|
|
3246
3257
|
"abstract": true,
|
|
3247
3258
|
"docs": {
|
|
3248
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3259
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#repository_key_file DataHelmTemplate#repository_key_file}",
|
|
3249
3260
|
"stability": "stable",
|
|
3250
3261
|
"summary": "The repository's cert key file."
|
|
3251
3262
|
},
|
|
@@ -3263,7 +3274,7 @@
|
|
|
3263
3274
|
{
|
|
3264
3275
|
"abstract": true,
|
|
3265
3276
|
"docs": {
|
|
3266
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3277
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#repository_password DataHelmTemplate#repository_password}",
|
|
3267
3278
|
"stability": "stable",
|
|
3268
3279
|
"summary": "Password for HTTP basic authentication."
|
|
3269
3280
|
},
|
|
@@ -3281,7 +3292,7 @@
|
|
|
3281
3292
|
{
|
|
3282
3293
|
"abstract": true,
|
|
3283
3294
|
"docs": {
|
|
3284
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3295
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#repository_username DataHelmTemplate#repository_username}",
|
|
3285
3296
|
"stability": "stable",
|
|
3286
3297
|
"summary": "Username for HTTP basic authentication."
|
|
3287
3298
|
},
|
|
@@ -3299,7 +3310,7 @@
|
|
|
3299
3310
|
{
|
|
3300
3311
|
"abstract": true,
|
|
3301
3312
|
"docs": {
|
|
3302
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3313
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#reset_values DataHelmTemplate#reset_values}",
|
|
3303
3314
|
"stability": "stable",
|
|
3304
3315
|
"summary": "When upgrading, reset the values to the ones built into the chart."
|
|
3305
3316
|
},
|
|
@@ -3326,7 +3337,7 @@
|
|
|
3326
3337
|
{
|
|
3327
3338
|
"abstract": true,
|
|
3328
3339
|
"docs": {
|
|
3329
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3340
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#reuse_values DataHelmTemplate#reuse_values}",
|
|
3330
3341
|
"stability": "stable",
|
|
3331
3342
|
"summary": "When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored."
|
|
3332
3343
|
},
|
|
@@ -3353,7 +3364,7 @@
|
|
|
3353
3364
|
{
|
|
3354
3365
|
"abstract": true,
|
|
3355
3366
|
"docs": {
|
|
3356
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3367
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#set DataHelmTemplate#set}",
|
|
3357
3368
|
"stability": "stable",
|
|
3358
3369
|
"summary": "Custom values to be merged with the values."
|
|
3359
3370
|
},
|
|
@@ -3385,7 +3396,7 @@
|
|
|
3385
3396
|
{
|
|
3386
3397
|
"abstract": true,
|
|
3387
3398
|
"docs": {
|
|
3388
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3399
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#set_list DataHelmTemplate#set_list}",
|
|
3389
3400
|
"stability": "stable",
|
|
3390
3401
|
"summary": "Custom sensitive values to be merged with the values."
|
|
3391
3402
|
},
|
|
@@ -3417,7 +3428,7 @@
|
|
|
3417
3428
|
{
|
|
3418
3429
|
"abstract": true,
|
|
3419
3430
|
"docs": {
|
|
3420
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3431
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#set_sensitive DataHelmTemplate#set_sensitive}",
|
|
3421
3432
|
"stability": "stable",
|
|
3422
3433
|
"summary": "Custom sensitive values to be merged with the values."
|
|
3423
3434
|
},
|
|
@@ -3449,7 +3460,7 @@
|
|
|
3449
3460
|
{
|
|
3450
3461
|
"abstract": true,
|
|
3451
3462
|
"docs": {
|
|
3452
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3463
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#set_wo DataHelmTemplate#set_wo}",
|
|
3453
3464
|
"stability": "stable",
|
|
3454
3465
|
"summary": "Write-only custom values to be merged with the values."
|
|
3455
3466
|
},
|
|
@@ -3481,7 +3492,7 @@
|
|
|
3481
3492
|
{
|
|
3482
3493
|
"abstract": true,
|
|
3483
3494
|
"docs": {
|
|
3484
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3495
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#show_only DataHelmTemplate#show_only}",
|
|
3485
3496
|
"stability": "stable",
|
|
3486
3497
|
"summary": "Only show manifests rendered from the given templates."
|
|
3487
3498
|
},
|
|
@@ -3504,7 +3515,7 @@
|
|
|
3504
3515
|
{
|
|
3505
3516
|
"abstract": true,
|
|
3506
3517
|
"docs": {
|
|
3507
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3518
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#skip_crds DataHelmTemplate#skip_crds}",
|
|
3508
3519
|
"stability": "stable",
|
|
3509
3520
|
"summary": "If set, no CRDs will be installed. By default, CRDs are installed if not already present."
|
|
3510
3521
|
},
|
|
@@ -3531,7 +3542,7 @@
|
|
|
3531
3542
|
{
|
|
3532
3543
|
"abstract": true,
|
|
3533
3544
|
"docs": {
|
|
3534
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3545
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#skip_tests DataHelmTemplate#skip_tests}",
|
|
3535
3546
|
"stability": "stable",
|
|
3536
3547
|
"summary": "If set, tests will not be rendered. By default, tests are rendered."
|
|
3537
3548
|
},
|
|
@@ -3558,7 +3569,7 @@
|
|
|
3558
3569
|
{
|
|
3559
3570
|
"abstract": true,
|
|
3560
3571
|
"docs": {
|
|
3561
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3572
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#timeout DataHelmTemplate#timeout}",
|
|
3562
3573
|
"stability": "stable",
|
|
3563
3574
|
"summary": "Time in seconds to wait for any individual Kubernetes operation."
|
|
3564
3575
|
},
|
|
@@ -3577,7 +3588,7 @@
|
|
|
3577
3588
|
"abstract": true,
|
|
3578
3589
|
"docs": {
|
|
3579
3590
|
"stability": "stable",
|
|
3580
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3591
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#timeouts DataHelmTemplate#timeouts}."
|
|
3581
3592
|
},
|
|
3582
3593
|
"immutable": true,
|
|
3583
3594
|
"locationInModule": {
|
|
@@ -3593,7 +3604,7 @@
|
|
|
3593
3604
|
{
|
|
3594
3605
|
"abstract": true,
|
|
3595
3606
|
"docs": {
|
|
3596
|
-
"remarks": "This is the same validation performed on an install.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3607
|
+
"remarks": "This is the same validation performed on an install.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#validate DataHelmTemplate#validate}",
|
|
3597
3608
|
"stability": "stable",
|
|
3598
3609
|
"summary": "Validate your manifests against the Kubernetes cluster you are currently pointing at."
|
|
3599
3610
|
},
|
|
@@ -3620,7 +3631,7 @@
|
|
|
3620
3631
|
{
|
|
3621
3632
|
"abstract": true,
|
|
3622
3633
|
"docs": {
|
|
3623
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3634
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#values DataHelmTemplate#values}",
|
|
3624
3635
|
"stability": "stable",
|
|
3625
3636
|
"summary": "List of values in raw yaml format to pass to helm."
|
|
3626
3637
|
},
|
|
@@ -3643,7 +3654,7 @@
|
|
|
3643
3654
|
{
|
|
3644
3655
|
"abstract": true,
|
|
3645
3656
|
"docs": {
|
|
3646
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3657
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#verify DataHelmTemplate#verify}",
|
|
3647
3658
|
"stability": "stable",
|
|
3648
3659
|
"summary": "Verify the package before installing it."
|
|
3649
3660
|
},
|
|
@@ -3670,7 +3681,7 @@
|
|
|
3670
3681
|
{
|
|
3671
3682
|
"abstract": true,
|
|
3672
3683
|
"docs": {
|
|
3673
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3684
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#version DataHelmTemplate#version}",
|
|
3674
3685
|
"stability": "stable",
|
|
3675
3686
|
"summary": "Specify the exact chart version to install. If this is not specified, the latest version is installed."
|
|
3676
3687
|
},
|
|
@@ -3688,7 +3699,7 @@
|
|
|
3688
3699
|
{
|
|
3689
3700
|
"abstract": true,
|
|
3690
3701
|
"docs": {
|
|
3691
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3702
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#wait DataHelmTemplate#wait}",
|
|
3692
3703
|
"stability": "stable",
|
|
3693
3704
|
"summary": "Will wait until all resources are in a ready state before marking the release as successful."
|
|
3694
3705
|
},
|
|
@@ -3733,7 +3744,7 @@
|
|
|
3733
3744
|
{
|
|
3734
3745
|
"abstract": true,
|
|
3735
3746
|
"docs": {
|
|
3736
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3747
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#binary_path DataHelmTemplate#binary_path}",
|
|
3737
3748
|
"stability": "stable",
|
|
3738
3749
|
"summary": "The common binary path."
|
|
3739
3750
|
},
|
|
@@ -3750,7 +3761,7 @@
|
|
|
3750
3761
|
{
|
|
3751
3762
|
"abstract": true,
|
|
3752
3763
|
"docs": {
|
|
3753
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3764
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#args DataHelmTemplate#args}",
|
|
3754
3765
|
"stability": "stable",
|
|
3755
3766
|
"summary": "An argument to the post-renderer (can specify multiple)."
|
|
3756
3767
|
},
|
|
@@ -3940,7 +3951,7 @@
|
|
|
3940
3951
|
"abstract": true,
|
|
3941
3952
|
"docs": {
|
|
3942
3953
|
"stability": "stable",
|
|
3943
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3954
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#name DataHelmTemplate#name}."
|
|
3944
3955
|
},
|
|
3945
3956
|
"immutable": true,
|
|
3946
3957
|
"locationInModule": {
|
|
@@ -3956,7 +3967,7 @@
|
|
|
3956
3967
|
"abstract": true,
|
|
3957
3968
|
"docs": {
|
|
3958
3969
|
"stability": "stable",
|
|
3959
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3970
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#type DataHelmTemplate#type}."
|
|
3960
3971
|
},
|
|
3961
3972
|
"immutable": true,
|
|
3962
3973
|
"locationInModule": {
|
|
@@ -3973,7 +3984,7 @@
|
|
|
3973
3984
|
"abstract": true,
|
|
3974
3985
|
"docs": {
|
|
3975
3986
|
"stability": "stable",
|
|
3976
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
3987
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#value DataHelmTemplate#value}."
|
|
3977
3988
|
},
|
|
3978
3989
|
"immutable": true,
|
|
3979
3990
|
"locationInModule": {
|
|
@@ -4070,54 +4081,6 @@
|
|
|
4070
4081
|
"name": "DataHelmTemplateSetList",
|
|
4071
4082
|
"namespace": "dataHelmTemplate",
|
|
4072
4083
|
"properties": [
|
|
4073
|
-
{
|
|
4074
|
-
"docs": {
|
|
4075
|
-
"stability": "stable",
|
|
4076
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
4077
|
-
},
|
|
4078
|
-
"locationInModule": {
|
|
4079
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4080
|
-
"line": 580
|
|
4081
|
-
},
|
|
4082
|
-
"name": "terraformAttribute",
|
|
4083
|
-
"overrides": "cdktn.ComplexList",
|
|
4084
|
-
"protected": true,
|
|
4085
|
-
"type": {
|
|
4086
|
-
"primitive": "string"
|
|
4087
|
-
}
|
|
4088
|
-
},
|
|
4089
|
-
{
|
|
4090
|
-
"docs": {
|
|
4091
|
-
"stability": "stable",
|
|
4092
|
-
"summary": "The parent resource."
|
|
4093
|
-
},
|
|
4094
|
-
"locationInModule": {
|
|
4095
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4096
|
-
"line": 580
|
|
4097
|
-
},
|
|
4098
|
-
"name": "terraformResource",
|
|
4099
|
-
"overrides": "cdktn.ComplexList",
|
|
4100
|
-
"protected": true,
|
|
4101
|
-
"type": {
|
|
4102
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
4103
|
-
}
|
|
4104
|
-
},
|
|
4105
|
-
{
|
|
4106
|
-
"docs": {
|
|
4107
|
-
"stability": "stable",
|
|
4108
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
4109
|
-
},
|
|
4110
|
-
"locationInModule": {
|
|
4111
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4112
|
-
"line": 580
|
|
4113
|
-
},
|
|
4114
|
-
"name": "wrapsSet",
|
|
4115
|
-
"overrides": "cdktn.ComplexList",
|
|
4116
|
-
"protected": true,
|
|
4117
|
-
"type": {
|
|
4118
|
-
"primitive": "boolean"
|
|
4119
|
-
}
|
|
4120
|
-
},
|
|
4121
4084
|
{
|
|
4122
4085
|
"docs": {
|
|
4123
4086
|
"stability": "stable"
|
|
@@ -4168,7 +4131,7 @@
|
|
|
4168
4131
|
"abstract": true,
|
|
4169
4132
|
"docs": {
|
|
4170
4133
|
"stability": "stable",
|
|
4171
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
4134
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#value DataHelmTemplate#value}."
|
|
4172
4135
|
},
|
|
4173
4136
|
"immutable": true,
|
|
4174
4137
|
"locationInModule": {
|
|
@@ -4189,7 +4152,7 @@
|
|
|
4189
4152
|
"abstract": true,
|
|
4190
4153
|
"docs": {
|
|
4191
4154
|
"stability": "stable",
|
|
4192
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
4155
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#name DataHelmTemplate#name}."
|
|
4193
4156
|
},
|
|
4194
4157
|
"immutable": true,
|
|
4195
4158
|
"locationInModule": {
|
|
@@ -4286,54 +4249,6 @@
|
|
|
4286
4249
|
"name": "DataHelmTemplateSetListStructList",
|
|
4287
4250
|
"namespace": "dataHelmTemplate",
|
|
4288
4251
|
"properties": [
|
|
4289
|
-
{
|
|
4290
|
-
"docs": {
|
|
4291
|
-
"stability": "stable",
|
|
4292
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
4293
|
-
},
|
|
4294
|
-
"locationInModule": {
|
|
4295
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4296
|
-
"line": 726
|
|
4297
|
-
},
|
|
4298
|
-
"name": "terraformAttribute",
|
|
4299
|
-
"overrides": "cdktn.ComplexList",
|
|
4300
|
-
"protected": true,
|
|
4301
|
-
"type": {
|
|
4302
|
-
"primitive": "string"
|
|
4303
|
-
}
|
|
4304
|
-
},
|
|
4305
|
-
{
|
|
4306
|
-
"docs": {
|
|
4307
|
-
"stability": "stable",
|
|
4308
|
-
"summary": "The parent resource."
|
|
4309
|
-
},
|
|
4310
|
-
"locationInModule": {
|
|
4311
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4312
|
-
"line": 726
|
|
4313
|
-
},
|
|
4314
|
-
"name": "terraformResource",
|
|
4315
|
-
"overrides": "cdktn.ComplexList",
|
|
4316
|
-
"protected": true,
|
|
4317
|
-
"type": {
|
|
4318
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
4319
|
-
}
|
|
4320
|
-
},
|
|
4321
|
-
{
|
|
4322
|
-
"docs": {
|
|
4323
|
-
"stability": "stable",
|
|
4324
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
4325
|
-
},
|
|
4326
|
-
"locationInModule": {
|
|
4327
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4328
|
-
"line": 726
|
|
4329
|
-
},
|
|
4330
|
-
"name": "wrapsSet",
|
|
4331
|
-
"overrides": "cdktn.ComplexList",
|
|
4332
|
-
"protected": true,
|
|
4333
|
-
"type": {
|
|
4334
|
-
"primitive": "boolean"
|
|
4335
|
-
}
|
|
4336
|
-
},
|
|
4337
4252
|
{
|
|
4338
4253
|
"docs": {
|
|
4339
4254
|
"stability": "stable"
|
|
@@ -4744,7 +4659,7 @@
|
|
|
4744
4659
|
"abstract": true,
|
|
4745
4660
|
"docs": {
|
|
4746
4661
|
"stability": "stable",
|
|
4747
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
4662
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#name DataHelmTemplate#name}."
|
|
4748
4663
|
},
|
|
4749
4664
|
"immutable": true,
|
|
4750
4665
|
"locationInModule": {
|
|
@@ -4760,7 +4675,7 @@
|
|
|
4760
4675
|
"abstract": true,
|
|
4761
4676
|
"docs": {
|
|
4762
4677
|
"stability": "stable",
|
|
4763
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
4678
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#value DataHelmTemplate#value}."
|
|
4764
4679
|
},
|
|
4765
4680
|
"immutable": true,
|
|
4766
4681
|
"locationInModule": {
|
|
@@ -4776,7 +4691,7 @@
|
|
|
4776
4691
|
"abstract": true,
|
|
4777
4692
|
"docs": {
|
|
4778
4693
|
"stability": "stable",
|
|
4779
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
4694
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#type DataHelmTemplate#type}."
|
|
4780
4695
|
},
|
|
4781
4696
|
"immutable": true,
|
|
4782
4697
|
"locationInModule": {
|
|
@@ -4873,54 +4788,6 @@
|
|
|
4873
4788
|
"name": "DataHelmTemplateSetSensitiveList",
|
|
4874
4789
|
"namespace": "dataHelmTemplate",
|
|
4875
4790
|
"properties": [
|
|
4876
|
-
{
|
|
4877
|
-
"docs": {
|
|
4878
|
-
"stability": "stable",
|
|
4879
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
4880
|
-
},
|
|
4881
|
-
"locationInModule": {
|
|
4882
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4883
|
-
"line": 902
|
|
4884
|
-
},
|
|
4885
|
-
"name": "terraformAttribute",
|
|
4886
|
-
"overrides": "cdktn.ComplexList",
|
|
4887
|
-
"protected": true,
|
|
4888
|
-
"type": {
|
|
4889
|
-
"primitive": "string"
|
|
4890
|
-
}
|
|
4891
|
-
},
|
|
4892
|
-
{
|
|
4893
|
-
"docs": {
|
|
4894
|
-
"stability": "stable",
|
|
4895
|
-
"summary": "The parent resource."
|
|
4896
|
-
},
|
|
4897
|
-
"locationInModule": {
|
|
4898
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4899
|
-
"line": 902
|
|
4900
|
-
},
|
|
4901
|
-
"name": "terraformResource",
|
|
4902
|
-
"overrides": "cdktn.ComplexList",
|
|
4903
|
-
"protected": true,
|
|
4904
|
-
"type": {
|
|
4905
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
4906
|
-
}
|
|
4907
|
-
},
|
|
4908
|
-
{
|
|
4909
|
-
"docs": {
|
|
4910
|
-
"stability": "stable",
|
|
4911
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
4912
|
-
},
|
|
4913
|
-
"locationInModule": {
|
|
4914
|
-
"filename": "src/data-helm-template/index.ts",
|
|
4915
|
-
"line": 902
|
|
4916
|
-
},
|
|
4917
|
-
"name": "wrapsSet",
|
|
4918
|
-
"overrides": "cdktn.ComplexList",
|
|
4919
|
-
"protected": true,
|
|
4920
|
-
"type": {
|
|
4921
|
-
"primitive": "boolean"
|
|
4922
|
-
}
|
|
4923
|
-
},
|
|
4924
4791
|
{
|
|
4925
4792
|
"docs": {
|
|
4926
4793
|
"stability": "stable"
|
|
@@ -5155,7 +5022,7 @@
|
|
|
5155
5022
|
"abstract": true,
|
|
5156
5023
|
"docs": {
|
|
5157
5024
|
"stability": "stable",
|
|
5158
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5025
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#name DataHelmTemplate#name}."
|
|
5159
5026
|
},
|
|
5160
5027
|
"immutable": true,
|
|
5161
5028
|
"locationInModule": {
|
|
@@ -5171,7 +5038,7 @@
|
|
|
5171
5038
|
"abstract": true,
|
|
5172
5039
|
"docs": {
|
|
5173
5040
|
"stability": "stable",
|
|
5174
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5041
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#value DataHelmTemplate#value}."
|
|
5175
5042
|
},
|
|
5176
5043
|
"immutable": true,
|
|
5177
5044
|
"locationInModule": {
|
|
@@ -5187,7 +5054,7 @@
|
|
|
5187
5054
|
"abstract": true,
|
|
5188
5055
|
"docs": {
|
|
5189
5056
|
"stability": "stable",
|
|
5190
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5057
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#type DataHelmTemplate#type}."
|
|
5191
5058
|
},
|
|
5192
5059
|
"immutable": true,
|
|
5193
5060
|
"locationInModule": {
|
|
@@ -5284,54 +5151,6 @@
|
|
|
5284
5151
|
"name": "DataHelmTemplateSetWoList",
|
|
5285
5152
|
"namespace": "dataHelmTemplate",
|
|
5286
5153
|
"properties": [
|
|
5287
|
-
{
|
|
5288
|
-
"docs": {
|
|
5289
|
-
"stability": "stable",
|
|
5290
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
5291
|
-
},
|
|
5292
|
-
"locationInModule": {
|
|
5293
|
-
"filename": "src/data-helm-template/index.ts",
|
|
5294
|
-
"line": 1078
|
|
5295
|
-
},
|
|
5296
|
-
"name": "terraformAttribute",
|
|
5297
|
-
"overrides": "cdktn.ComplexList",
|
|
5298
|
-
"protected": true,
|
|
5299
|
-
"type": {
|
|
5300
|
-
"primitive": "string"
|
|
5301
|
-
}
|
|
5302
|
-
},
|
|
5303
|
-
{
|
|
5304
|
-
"docs": {
|
|
5305
|
-
"stability": "stable",
|
|
5306
|
-
"summary": "The parent resource."
|
|
5307
|
-
},
|
|
5308
|
-
"locationInModule": {
|
|
5309
|
-
"filename": "src/data-helm-template/index.ts",
|
|
5310
|
-
"line": 1078
|
|
5311
|
-
},
|
|
5312
|
-
"name": "terraformResource",
|
|
5313
|
-
"overrides": "cdktn.ComplexList",
|
|
5314
|
-
"protected": true,
|
|
5315
|
-
"type": {
|
|
5316
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
5317
|
-
}
|
|
5318
|
-
},
|
|
5319
|
-
{
|
|
5320
|
-
"docs": {
|
|
5321
|
-
"stability": "stable",
|
|
5322
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
5323
|
-
},
|
|
5324
|
-
"locationInModule": {
|
|
5325
|
-
"filename": "src/data-helm-template/index.ts",
|
|
5326
|
-
"line": 1078
|
|
5327
|
-
},
|
|
5328
|
-
"name": "wrapsSet",
|
|
5329
|
-
"overrides": "cdktn.ComplexList",
|
|
5330
|
-
"protected": true,
|
|
5331
|
-
"type": {
|
|
5332
|
-
"primitive": "boolean"
|
|
5333
|
-
}
|
|
5334
|
-
},
|
|
5335
5154
|
{
|
|
5336
5155
|
"docs": {
|
|
5337
5156
|
"stability": "stable"
|
|
@@ -5565,7 +5384,7 @@
|
|
|
5565
5384
|
{
|
|
5566
5385
|
"abstract": true,
|
|
5567
5386
|
"docs": {
|
|
5568
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5387
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/data-sources/template#read DataHelmTemplate#read}",
|
|
5569
5388
|
"stability": "stable",
|
|
5570
5389
|
"summary": "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)."
|
|
5571
5390
|
},
|
|
@@ -5698,13 +5517,13 @@
|
|
|
5698
5517
|
"base": "cdktn.TerraformProvider",
|
|
5699
5518
|
"docs": {
|
|
5700
5519
|
"stability": "stable",
|
|
5701
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5520
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs helm}."
|
|
5702
5521
|
},
|
|
5703
5522
|
"fqn": "@cdktn/provider-helm.provider.HelmProvider",
|
|
5704
5523
|
"initializer": {
|
|
5705
5524
|
"docs": {
|
|
5706
5525
|
"stability": "stable",
|
|
5707
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5526
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs helm} Resource."
|
|
5708
5527
|
},
|
|
5709
5528
|
"locationInModule": {
|
|
5710
5529
|
"filename": "src/provider/index.ts",
|
|
@@ -5776,7 +5595,7 @@
|
|
|
5776
5595
|
},
|
|
5777
5596
|
{
|
|
5778
5597
|
"docs": {
|
|
5779
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
5598
|
+
"remarks": "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",
|
|
5780
5599
|
"summary": "The id of the existing HelmProvider that should be imported."
|
|
5781
5600
|
},
|
|
5782
5601
|
"name": "importFromId",
|
|
@@ -6402,7 +6221,7 @@
|
|
|
6402
6221
|
{
|
|
6403
6222
|
"abstract": true,
|
|
6404
6223
|
"docs": {
|
|
6405
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6224
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#alias HelmProvider#alias}",
|
|
6406
6225
|
"stability": "stable",
|
|
6407
6226
|
"summary": "Alias name."
|
|
6408
6227
|
},
|
|
@@ -6420,7 +6239,7 @@
|
|
|
6420
6239
|
{
|
|
6421
6240
|
"abstract": true,
|
|
6422
6241
|
"docs": {
|
|
6423
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6242
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#burst_limit HelmProvider#burst_limit}",
|
|
6424
6243
|
"stability": "stable",
|
|
6425
6244
|
"summary": "Helm burst limit. Increase this if you have a cluster with many CRDs."
|
|
6426
6245
|
},
|
|
@@ -6438,7 +6257,7 @@
|
|
|
6438
6257
|
{
|
|
6439
6258
|
"abstract": true,
|
|
6440
6259
|
"docs": {
|
|
6441
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6260
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#debug HelmProvider#debug}",
|
|
6442
6261
|
"stability": "stable",
|
|
6443
6262
|
"summary": "Debug indicates whether or not Helm is running in Debug mode."
|
|
6444
6263
|
},
|
|
@@ -6465,7 +6284,7 @@
|
|
|
6465
6284
|
{
|
|
6466
6285
|
"abstract": true,
|
|
6467
6286
|
"docs": {
|
|
6468
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6287
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#experiments HelmProvider#experiments}",
|
|
6469
6288
|
"stability": "stable",
|
|
6470
6289
|
"summary": "Enable and disable experimental features."
|
|
6471
6290
|
},
|
|
@@ -6483,7 +6302,7 @@
|
|
|
6483
6302
|
{
|
|
6484
6303
|
"abstract": true,
|
|
6485
6304
|
"docs": {
|
|
6486
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6305
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#helm_driver HelmProvider#helm_driver}",
|
|
6487
6306
|
"stability": "stable",
|
|
6488
6307
|
"summary": "The backend storage driver. Values are: configmap, secret, memory, sql."
|
|
6489
6308
|
},
|
|
@@ -6501,7 +6320,7 @@
|
|
|
6501
6320
|
{
|
|
6502
6321
|
"abstract": true,
|
|
6503
6322
|
"docs": {
|
|
6504
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6323
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#kubernetes HelmProvider#kubernetes}",
|
|
6505
6324
|
"stability": "stable",
|
|
6506
6325
|
"summary": "Kubernetes Configuration."
|
|
6507
6326
|
},
|
|
@@ -6519,7 +6338,7 @@
|
|
|
6519
6338
|
{
|
|
6520
6339
|
"abstract": true,
|
|
6521
6340
|
"docs": {
|
|
6522
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6341
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#plugins_path HelmProvider#plugins_path}",
|
|
6523
6342
|
"stability": "stable",
|
|
6524
6343
|
"summary": "The path to the helm plugins directory."
|
|
6525
6344
|
},
|
|
@@ -6537,7 +6356,7 @@
|
|
|
6537
6356
|
{
|
|
6538
6357
|
"abstract": true,
|
|
6539
6358
|
"docs": {
|
|
6540
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6359
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#qps HelmProvider#qps}",
|
|
6541
6360
|
"stability": "stable",
|
|
6542
6361
|
"summary": "Queries per second used when communicating with the Kubernetes API. Can be used to avoid throttling."
|
|
6543
6362
|
},
|
|
@@ -6555,7 +6374,7 @@
|
|
|
6555
6374
|
{
|
|
6556
6375
|
"abstract": true,
|
|
6557
6376
|
"docs": {
|
|
6558
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6377
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#registries HelmProvider#registries}",
|
|
6559
6378
|
"stability": "stable",
|
|
6560
6379
|
"summary": "RegistryClient configuration."
|
|
6561
6380
|
},
|
|
@@ -6587,7 +6406,7 @@
|
|
|
6587
6406
|
{
|
|
6588
6407
|
"abstract": true,
|
|
6589
6408
|
"docs": {
|
|
6590
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6409
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#registry_config_path HelmProvider#registry_config_path}",
|
|
6591
6410
|
"stability": "stable",
|
|
6592
6411
|
"summary": "The path to the registry config file."
|
|
6593
6412
|
},
|
|
@@ -6605,7 +6424,7 @@
|
|
|
6605
6424
|
{
|
|
6606
6425
|
"abstract": true,
|
|
6607
6426
|
"docs": {
|
|
6608
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6427
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#repository_cache HelmProvider#repository_cache}",
|
|
6609
6428
|
"stability": "stable",
|
|
6610
6429
|
"summary": "The path to the file containing cached repository indexes."
|
|
6611
6430
|
},
|
|
@@ -6623,7 +6442,7 @@
|
|
|
6623
6442
|
{
|
|
6624
6443
|
"abstract": true,
|
|
6625
6444
|
"docs": {
|
|
6626
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6445
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#repository_config_path HelmProvider#repository_config_path}",
|
|
6627
6446
|
"stability": "stable",
|
|
6628
6447
|
"summary": "The path to the file containing repository names and URLs."
|
|
6629
6448
|
},
|
|
@@ -6659,7 +6478,7 @@
|
|
|
6659
6478
|
{
|
|
6660
6479
|
"abstract": true,
|
|
6661
6480
|
"docs": {
|
|
6662
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6481
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#manifest HelmProvider#manifest}",
|
|
6663
6482
|
"stability": "stable",
|
|
6664
6483
|
"summary": "Enable full diff by storing the rendered manifest in the state."
|
|
6665
6484
|
},
|
|
@@ -6704,7 +6523,7 @@
|
|
|
6704
6523
|
{
|
|
6705
6524
|
"abstract": true,
|
|
6706
6525
|
"docs": {
|
|
6707
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6526
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#client_certificate HelmProvider#client_certificate}",
|
|
6708
6527
|
"stability": "stable",
|
|
6709
6528
|
"summary": "PEM-encoded client certificate for TLS authentication."
|
|
6710
6529
|
},
|
|
@@ -6722,7 +6541,7 @@
|
|
|
6722
6541
|
{
|
|
6723
6542
|
"abstract": true,
|
|
6724
6543
|
"docs": {
|
|
6725
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6544
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#client_key HelmProvider#client_key}",
|
|
6726
6545
|
"stability": "stable",
|
|
6727
6546
|
"summary": "PEM-encoded client certificate key for TLS authentication."
|
|
6728
6547
|
},
|
|
@@ -6740,7 +6559,7 @@
|
|
|
6740
6559
|
{
|
|
6741
6560
|
"abstract": true,
|
|
6742
6561
|
"docs": {
|
|
6743
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6562
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#cluster_ca_certificate HelmProvider#cluster_ca_certificate}",
|
|
6744
6563
|
"stability": "stable",
|
|
6745
6564
|
"summary": "PEM-encoded root certificates bundle for TLS authentication."
|
|
6746
6565
|
},
|
|
@@ -6758,7 +6577,7 @@
|
|
|
6758
6577
|
{
|
|
6759
6578
|
"abstract": true,
|
|
6760
6579
|
"docs": {
|
|
6761
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6580
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_context HelmProvider#config_context}",
|
|
6762
6581
|
"stability": "stable",
|
|
6763
6582
|
"summary": "Context to choose from the config file. Can be sourced from KUBE_CTX."
|
|
6764
6583
|
},
|
|
@@ -6776,7 +6595,7 @@
|
|
|
6776
6595
|
{
|
|
6777
6596
|
"abstract": true,
|
|
6778
6597
|
"docs": {
|
|
6779
|
-
"remarks": "Can be sourced from KUBE_CTX_AUTH_INFO.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6598
|
+
"remarks": "Can be sourced from KUBE_CTX_AUTH_INFO.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_context_auth_info HelmProvider#config_context_auth_info}",
|
|
6780
6599
|
"stability": "stable",
|
|
6781
6600
|
"summary": "Authentication info context of the kube config (name of the kubeconfig user, --user flag in kubectl)."
|
|
6782
6601
|
},
|
|
@@ -6794,7 +6613,7 @@
|
|
|
6794
6613
|
{
|
|
6795
6614
|
"abstract": true,
|
|
6796
6615
|
"docs": {
|
|
6797
|
-
"remarks": "Can be sourced from KUBE_CTX_CLUSTER.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6616
|
+
"remarks": "Can be sourced from KUBE_CTX_CLUSTER.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_context_cluster HelmProvider#config_context_cluster}",
|
|
6798
6617
|
"stability": "stable",
|
|
6799
6618
|
"summary": "Cluster context of the kube config (name of the kubeconfig cluster, --cluster flag in kubectl)."
|
|
6800
6619
|
},
|
|
@@ -6812,7 +6631,7 @@
|
|
|
6812
6631
|
{
|
|
6813
6632
|
"abstract": true,
|
|
6814
6633
|
"docs": {
|
|
6815
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6634
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_path HelmProvider#config_path}",
|
|
6816
6635
|
"stability": "stable",
|
|
6817
6636
|
"summary": "Path to the kube config file. Can be set with KUBE_CONFIG_PATH."
|
|
6818
6637
|
},
|
|
@@ -6830,7 +6649,7 @@
|
|
|
6830
6649
|
{
|
|
6831
6650
|
"abstract": true,
|
|
6832
6651
|
"docs": {
|
|
6833
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6652
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#config_paths HelmProvider#config_paths}",
|
|
6834
6653
|
"stability": "stable",
|
|
6835
6654
|
"summary": "A list of paths to kube config files. Can be set with KUBE_CONFIG_PATHS environment variable."
|
|
6836
6655
|
},
|
|
@@ -6853,7 +6672,7 @@
|
|
|
6853
6672
|
{
|
|
6854
6673
|
"abstract": true,
|
|
6855
6674
|
"docs": {
|
|
6856
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6675
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#exec HelmProvider#exec}",
|
|
6857
6676
|
"stability": "stable",
|
|
6858
6677
|
"summary": "Exec configuration for Kubernetes authentication."
|
|
6859
6678
|
},
|
|
@@ -6871,7 +6690,7 @@
|
|
|
6871
6690
|
{
|
|
6872
6691
|
"abstract": true,
|
|
6873
6692
|
"docs": {
|
|
6874
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6693
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#host HelmProvider#host}",
|
|
6875
6694
|
"stability": "stable",
|
|
6876
6695
|
"summary": "The hostname (in form of URI) of kubernetes master."
|
|
6877
6696
|
},
|
|
@@ -6889,7 +6708,7 @@
|
|
|
6889
6708
|
{
|
|
6890
6709
|
"abstract": true,
|
|
6891
6710
|
"docs": {
|
|
6892
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6711
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#insecure HelmProvider#insecure}",
|
|
6893
6712
|
"stability": "stable",
|
|
6894
6713
|
"summary": "Whether server should be accessed without verifying the TLS certificate."
|
|
6895
6714
|
},
|
|
@@ -6916,7 +6735,7 @@
|
|
|
6916
6735
|
{
|
|
6917
6736
|
"abstract": true,
|
|
6918
6737
|
"docs": {
|
|
6919
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6738
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#password HelmProvider#password}",
|
|
6920
6739
|
"stability": "stable",
|
|
6921
6740
|
"summary": "The password to use for HTTP basic authentication when accessing the Kubernetes master endpoint."
|
|
6922
6741
|
},
|
|
@@ -6934,7 +6753,7 @@
|
|
|
6934
6753
|
{
|
|
6935
6754
|
"abstract": true,
|
|
6936
6755
|
"docs": {
|
|
6937
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6756
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#proxy_url HelmProvider#proxy_url}",
|
|
6938
6757
|
"stability": "stable",
|
|
6939
6758
|
"summary": "URL to the proxy to be used for all API requests."
|
|
6940
6759
|
},
|
|
@@ -6952,7 +6771,7 @@
|
|
|
6952
6771
|
{
|
|
6953
6772
|
"abstract": true,
|
|
6954
6773
|
"docs": {
|
|
6955
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6774
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#tls_server_name HelmProvider#tls_server_name}",
|
|
6956
6775
|
"stability": "stable",
|
|
6957
6776
|
"summary": "Server name passed to the server for SNI and is used in the client to check server certificates against."
|
|
6958
6777
|
},
|
|
@@ -6970,7 +6789,7 @@
|
|
|
6970
6789
|
{
|
|
6971
6790
|
"abstract": true,
|
|
6972
6791
|
"docs": {
|
|
6973
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6792
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#token HelmProvider#token}",
|
|
6974
6793
|
"stability": "stable",
|
|
6975
6794
|
"summary": "Token to authenticate a service account."
|
|
6976
6795
|
},
|
|
@@ -6988,7 +6807,7 @@
|
|
|
6988
6807
|
{
|
|
6989
6808
|
"abstract": true,
|
|
6990
6809
|
"docs": {
|
|
6991
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6810
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#username HelmProvider#username}",
|
|
6992
6811
|
"stability": "stable",
|
|
6993
6812
|
"summary": "The username to use for HTTP basic authentication when accessing the Kubernetes master endpoint."
|
|
6994
6813
|
},
|
|
@@ -7024,7 +6843,7 @@
|
|
|
7024
6843
|
{
|
|
7025
6844
|
"abstract": true,
|
|
7026
6845
|
"docs": {
|
|
7027
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6846
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#api_version HelmProvider#api_version}",
|
|
7028
6847
|
"stability": "stable",
|
|
7029
6848
|
"summary": "API version for the exec plugin."
|
|
7030
6849
|
},
|
|
@@ -7041,7 +6860,7 @@
|
|
|
7041
6860
|
{
|
|
7042
6861
|
"abstract": true,
|
|
7043
6862
|
"docs": {
|
|
7044
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6863
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#command HelmProvider#command}",
|
|
7045
6864
|
"stability": "stable",
|
|
7046
6865
|
"summary": "Command to run for Kubernetes exec plugin."
|
|
7047
6866
|
},
|
|
@@ -7058,7 +6877,7 @@
|
|
|
7058
6877
|
{
|
|
7059
6878
|
"abstract": true,
|
|
7060
6879
|
"docs": {
|
|
7061
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6880
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#args HelmProvider#args}",
|
|
7062
6881
|
"stability": "stable",
|
|
7063
6882
|
"summary": "Arguments for the exec plugin."
|
|
7064
6883
|
},
|
|
@@ -7081,7 +6900,7 @@
|
|
|
7081
6900
|
{
|
|
7082
6901
|
"abstract": true,
|
|
7083
6902
|
"docs": {
|
|
7084
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6903
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#env HelmProvider#env}",
|
|
7085
6904
|
"stability": "stable",
|
|
7086
6905
|
"summary": "Environment variables for the exec plugin."
|
|
7087
6906
|
},
|
|
@@ -7122,7 +6941,7 @@
|
|
|
7122
6941
|
{
|
|
7123
6942
|
"abstract": true,
|
|
7124
6943
|
"docs": {
|
|
7125
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6944
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#password HelmProvider#password}",
|
|
7126
6945
|
"stability": "stable",
|
|
7127
6946
|
"summary": "The password to use for the OCI HTTP basic authentication when accessing the Kubernetes master endpoint."
|
|
7128
6947
|
},
|
|
@@ -7139,7 +6958,7 @@
|
|
|
7139
6958
|
{
|
|
7140
6959
|
"abstract": true,
|
|
7141
6960
|
"docs": {
|
|
7142
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6961
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#url HelmProvider#url}",
|
|
7143
6962
|
"stability": "stable",
|
|
7144
6963
|
"summary": "OCI URL in form of oci://host:port or oci://host."
|
|
7145
6964
|
},
|
|
@@ -7156,7 +6975,7 @@
|
|
|
7156
6975
|
{
|
|
7157
6976
|
"abstract": true,
|
|
7158
6977
|
"docs": {
|
|
7159
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
6978
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs#username HelmProvider#username}",
|
|
7160
6979
|
"stability": "stable",
|
|
7161
6980
|
"summary": "The username to use for the OCI HTTP basic authentication when accessing the Kubernetes master endpoint."
|
|
7162
6981
|
},
|
|
@@ -7178,13 +6997,13 @@
|
|
|
7178
6997
|
"base": "cdktn.TerraformResource",
|
|
7179
6998
|
"docs": {
|
|
7180
6999
|
"stability": "stable",
|
|
7181
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
7000
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release helm_release}."
|
|
7182
7001
|
},
|
|
7183
7002
|
"fqn": "@cdktn/provider-helm.release.Release",
|
|
7184
7003
|
"initializer": {
|
|
7185
7004
|
"docs": {
|
|
7186
7005
|
"stability": "stable",
|
|
7187
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
7006
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release helm_release} Resource."
|
|
7188
7007
|
},
|
|
7189
7008
|
"locationInModule": {
|
|
7190
7009
|
"filename": "src/release/index.ts",
|
|
@@ -7255,7 +7074,7 @@
|
|
|
7255
7074
|
},
|
|
7256
7075
|
{
|
|
7257
7076
|
"docs": {
|
|
7258
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
7077
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#import import section} in the documentation of this resource for the id to use",
|
|
7259
7078
|
"summary": "The id of the existing Release that should be imported."
|
|
7260
7079
|
},
|
|
7261
7080
|
"name": "importFromId",
|
|
@@ -9741,7 +9560,7 @@
|
|
|
9741
9560
|
{
|
|
9742
9561
|
"abstract": true,
|
|
9743
9562
|
"docs": {
|
|
9744
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9563
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#chart Release#chart}",
|
|
9745
9564
|
"stability": "stable",
|
|
9746
9565
|
"summary": "Chart name to be installed. A path may be used."
|
|
9747
9566
|
},
|
|
@@ -9758,7 +9577,7 @@
|
|
|
9758
9577
|
{
|
|
9759
9578
|
"abstract": true,
|
|
9760
9579
|
"docs": {
|
|
9761
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9580
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#name Release#name}",
|
|
9762
9581
|
"stability": "stable",
|
|
9763
9582
|
"summary": "Release name. The length must not be longer than 53 characters."
|
|
9764
9583
|
},
|
|
@@ -9775,7 +9594,7 @@
|
|
|
9775
9594
|
{
|
|
9776
9595
|
"abstract": true,
|
|
9777
9596
|
"docs": {
|
|
9778
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9597
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#atomic Release#atomic}",
|
|
9779
9598
|
"stability": "stable",
|
|
9780
9599
|
"summary": "If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used."
|
|
9781
9600
|
},
|
|
@@ -9802,7 +9621,7 @@
|
|
|
9802
9621
|
{
|
|
9803
9622
|
"abstract": true,
|
|
9804
9623
|
"docs": {
|
|
9805
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9624
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#cleanup_on_fail Release#cleanup_on_fail}",
|
|
9806
9625
|
"stability": "stable",
|
|
9807
9626
|
"summary": "Allow deletion of new resources created in this upgrade when upgrade fails."
|
|
9808
9627
|
},
|
|
@@ -9829,7 +9648,7 @@
|
|
|
9829
9648
|
{
|
|
9830
9649
|
"abstract": true,
|
|
9831
9650
|
"docs": {
|
|
9832
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9651
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#create_namespace Release#create_namespace}",
|
|
9833
9652
|
"stability": "stable",
|
|
9834
9653
|
"summary": "Create the namespace if it does not exist."
|
|
9835
9654
|
},
|
|
@@ -9856,7 +9675,7 @@
|
|
|
9856
9675
|
{
|
|
9857
9676
|
"abstract": true,
|
|
9858
9677
|
"docs": {
|
|
9859
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9678
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#dependency_update Release#dependency_update}",
|
|
9860
9679
|
"stability": "stable",
|
|
9861
9680
|
"summary": "Run helm dependency update before installing the chart."
|
|
9862
9681
|
},
|
|
@@ -9883,7 +9702,7 @@
|
|
|
9883
9702
|
{
|
|
9884
9703
|
"abstract": true,
|
|
9885
9704
|
"docs": {
|
|
9886
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9705
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#description Release#description}",
|
|
9887
9706
|
"stability": "stable",
|
|
9888
9707
|
"summary": "Add a custom description."
|
|
9889
9708
|
},
|
|
@@ -9901,7 +9720,7 @@
|
|
|
9901
9720
|
{
|
|
9902
9721
|
"abstract": true,
|
|
9903
9722
|
"docs": {
|
|
9904
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9723
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#devel Release#devel}",
|
|
9905
9724
|
"stability": "stable",
|
|
9906
9725
|
"summary": "Use chart development versions, too. Equivalent to version '>0.0.0-0'. If 'version' is set, this is ignored."
|
|
9907
9726
|
},
|
|
@@ -9928,7 +9747,7 @@
|
|
|
9928
9747
|
{
|
|
9929
9748
|
"abstract": true,
|
|
9930
9749
|
"docs": {
|
|
9931
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9750
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#disable_crd_hooks Release#disable_crd_hooks}",
|
|
9932
9751
|
"stability": "stable",
|
|
9933
9752
|
"summary": "Prevent CRD hooks from running, but run other hooks. See helm install --no-crd-hook."
|
|
9934
9753
|
},
|
|
@@ -9955,7 +9774,7 @@
|
|
|
9955
9774
|
{
|
|
9956
9775
|
"abstract": true,
|
|
9957
9776
|
"docs": {
|
|
9958
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9777
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#disable_openapi_validation Release#disable_openapi_validation}",
|
|
9959
9778
|
"stability": "stable",
|
|
9960
9779
|
"summary": "If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema."
|
|
9961
9780
|
},
|
|
@@ -9982,7 +9801,7 @@
|
|
|
9982
9801
|
{
|
|
9983
9802
|
"abstract": true,
|
|
9984
9803
|
"docs": {
|
|
9985
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9804
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#disable_webhooks Release#disable_webhooks}",
|
|
9986
9805
|
"stability": "stable",
|
|
9987
9806
|
"summary": "Prevent hooks from running."
|
|
9988
9807
|
},
|
|
@@ -10009,7 +9828,7 @@
|
|
|
10009
9828
|
{
|
|
10010
9829
|
"abstract": true,
|
|
10011
9830
|
"docs": {
|
|
10012
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9831
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#force_update Release#force_update}",
|
|
10013
9832
|
"stability": "stable",
|
|
10014
9833
|
"summary": "Force resource update through delete/recreate if needed."
|
|
10015
9834
|
},
|
|
@@ -10036,7 +9855,7 @@
|
|
|
10036
9855
|
{
|
|
10037
9856
|
"abstract": true,
|
|
10038
9857
|
"docs": {
|
|
10039
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9858
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#keyring Release#keyring}",
|
|
10040
9859
|
"stability": "stable",
|
|
10041
9860
|
"summary": "Location of public keys used for verification, Used only if 'verify is true'."
|
|
10042
9861
|
},
|
|
@@ -10054,7 +9873,7 @@
|
|
|
10054
9873
|
{
|
|
10055
9874
|
"abstract": true,
|
|
10056
9875
|
"docs": {
|
|
10057
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9876
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#lint Release#lint}",
|
|
10058
9877
|
"stability": "stable",
|
|
10059
9878
|
"summary": "Run helm lint when planning."
|
|
10060
9879
|
},
|
|
@@ -10081,7 +9900,7 @@
|
|
|
10081
9900
|
{
|
|
10082
9901
|
"abstract": true,
|
|
10083
9902
|
"docs": {
|
|
10084
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9903
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#max_history Release#max_history}",
|
|
10085
9904
|
"stability": "stable",
|
|
10086
9905
|
"summary": "Limit the maximum number of revisions saved per release. Use 0 for no limit."
|
|
10087
9906
|
},
|
|
@@ -10099,7 +9918,7 @@
|
|
|
10099
9918
|
{
|
|
10100
9919
|
"abstract": true,
|
|
10101
9920
|
"docs": {
|
|
10102
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9921
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#namespace Release#namespace}",
|
|
10103
9922
|
"stability": "stable",
|
|
10104
9923
|
"summary": "Namespace to install the release into."
|
|
10105
9924
|
},
|
|
@@ -10117,7 +9936,7 @@
|
|
|
10117
9936
|
{
|
|
10118
9937
|
"abstract": true,
|
|
10119
9938
|
"docs": {
|
|
10120
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9939
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#pass_credentials Release#pass_credentials}",
|
|
10121
9940
|
"stability": "stable",
|
|
10122
9941
|
"summary": "Pass credentials to all domains."
|
|
10123
9942
|
},
|
|
@@ -10144,7 +9963,7 @@
|
|
|
10144
9963
|
{
|
|
10145
9964
|
"abstract": true,
|
|
10146
9965
|
"docs": {
|
|
10147
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9966
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#postrender Release#postrender}",
|
|
10148
9967
|
"stability": "stable",
|
|
10149
9968
|
"summary": "Postrender command config."
|
|
10150
9969
|
},
|
|
@@ -10162,7 +9981,7 @@
|
|
|
10162
9981
|
{
|
|
10163
9982
|
"abstract": true,
|
|
10164
9983
|
"docs": {
|
|
10165
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
9984
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#recreate_pods Release#recreate_pods}",
|
|
10166
9985
|
"stability": "stable",
|
|
10167
9986
|
"summary": "Perform pods restart during upgrade/rollback."
|
|
10168
9987
|
},
|
|
@@ -10189,7 +10008,7 @@
|
|
|
10189
10008
|
{
|
|
10190
10009
|
"abstract": true,
|
|
10191
10010
|
"docs": {
|
|
10192
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10011
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#render_subchart_notes Release#render_subchart_notes}",
|
|
10193
10012
|
"stability": "stable",
|
|
10194
10013
|
"summary": "If set, render subchart notes along with the parent."
|
|
10195
10014
|
},
|
|
@@ -10216,7 +10035,7 @@
|
|
|
10216
10035
|
{
|
|
10217
10036
|
"abstract": true,
|
|
10218
10037
|
"docs": {
|
|
10219
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10038
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#replace Release#replace}",
|
|
10220
10039
|
"stability": "stable",
|
|
10221
10040
|
"summary": "Re-use the given name, even if that name is already used. This is unsafe in production."
|
|
10222
10041
|
},
|
|
@@ -10243,7 +10062,7 @@
|
|
|
10243
10062
|
{
|
|
10244
10063
|
"abstract": true,
|
|
10245
10064
|
"docs": {
|
|
10246
|
-
"remarks": "If it is a URL, the chart is installed without installing the repository\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10065
|
+
"remarks": "If it is a URL, the chart is installed without installing the repository\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#repository Release#repository}",
|
|
10247
10066
|
"stability": "stable",
|
|
10248
10067
|
"summary": "Repository where to locate the requested chart."
|
|
10249
10068
|
},
|
|
@@ -10261,7 +10080,7 @@
|
|
|
10261
10080
|
{
|
|
10262
10081
|
"abstract": true,
|
|
10263
10082
|
"docs": {
|
|
10264
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10083
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#repository_ca_file Release#repository_ca_file}",
|
|
10265
10084
|
"stability": "stable",
|
|
10266
10085
|
"summary": "The Repositories CA file."
|
|
10267
10086
|
},
|
|
@@ -10279,7 +10098,7 @@
|
|
|
10279
10098
|
{
|
|
10280
10099
|
"abstract": true,
|
|
10281
10100
|
"docs": {
|
|
10282
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10101
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#repository_cert_file Release#repository_cert_file}",
|
|
10283
10102
|
"stability": "stable",
|
|
10284
10103
|
"summary": "The repositories cert file."
|
|
10285
10104
|
},
|
|
@@ -10297,7 +10116,7 @@
|
|
|
10297
10116
|
{
|
|
10298
10117
|
"abstract": true,
|
|
10299
10118
|
"docs": {
|
|
10300
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10119
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#repository_key_file Release#repository_key_file}",
|
|
10301
10120
|
"stability": "stable",
|
|
10302
10121
|
"summary": "The repositories cert key file."
|
|
10303
10122
|
},
|
|
@@ -10315,7 +10134,7 @@
|
|
|
10315
10134
|
{
|
|
10316
10135
|
"abstract": true,
|
|
10317
10136
|
"docs": {
|
|
10318
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10137
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#repository_password Release#repository_password}",
|
|
10319
10138
|
"stability": "stable",
|
|
10320
10139
|
"summary": "Password for HTTP basic authentication."
|
|
10321
10140
|
},
|
|
@@ -10333,7 +10152,7 @@
|
|
|
10333
10152
|
{
|
|
10334
10153
|
"abstract": true,
|
|
10335
10154
|
"docs": {
|
|
10336
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10155
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#repository_username Release#repository_username}",
|
|
10337
10156
|
"stability": "stable",
|
|
10338
10157
|
"summary": "Username for HTTP basic authentication."
|
|
10339
10158
|
},
|
|
@@ -10351,7 +10170,7 @@
|
|
|
10351
10170
|
{
|
|
10352
10171
|
"abstract": true,
|
|
10353
10172
|
"docs": {
|
|
10354
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10173
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#reset_values Release#reset_values}",
|
|
10355
10174
|
"stability": "stable",
|
|
10356
10175
|
"summary": "When upgrading, reset the values to the ones built into the chart."
|
|
10357
10176
|
},
|
|
@@ -10378,7 +10197,7 @@
|
|
|
10378
10197
|
{
|
|
10379
10198
|
"abstract": true,
|
|
10380
10199
|
"docs": {
|
|
10381
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10200
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#reuse_values Release#reuse_values}",
|
|
10382
10201
|
"stability": "stable",
|
|
10383
10202
|
"summary": "When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored."
|
|
10384
10203
|
},
|
|
@@ -10405,7 +10224,7 @@
|
|
|
10405
10224
|
{
|
|
10406
10225
|
"abstract": true,
|
|
10407
10226
|
"docs": {
|
|
10408
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10227
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#set Release#set}",
|
|
10409
10228
|
"stability": "stable",
|
|
10410
10229
|
"summary": "Custom values to be merged with the values."
|
|
10411
10230
|
},
|
|
@@ -10437,7 +10256,7 @@
|
|
|
10437
10256
|
{
|
|
10438
10257
|
"abstract": true,
|
|
10439
10258
|
"docs": {
|
|
10440
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10259
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#set_list Release#set_list}",
|
|
10441
10260
|
"stability": "stable",
|
|
10442
10261
|
"summary": "Custom sensitive values to be merged with the values."
|
|
10443
10262
|
},
|
|
@@ -10469,7 +10288,7 @@
|
|
|
10469
10288
|
{
|
|
10470
10289
|
"abstract": true,
|
|
10471
10290
|
"docs": {
|
|
10472
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10291
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#set_sensitive Release#set_sensitive}",
|
|
10473
10292
|
"stability": "stable",
|
|
10474
10293
|
"summary": "Custom sensitive values to be merged with the values."
|
|
10475
10294
|
},
|
|
@@ -10501,7 +10320,7 @@
|
|
|
10501
10320
|
{
|
|
10502
10321
|
"abstract": true,
|
|
10503
10322
|
"docs": {
|
|
10504
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10323
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#set_wo Release#set_wo}",
|
|
10505
10324
|
"stability": "stable",
|
|
10506
10325
|
"summary": "Custom values to be merged with the values."
|
|
10507
10326
|
},
|
|
@@ -10533,7 +10352,7 @@
|
|
|
10533
10352
|
{
|
|
10534
10353
|
"abstract": true,
|
|
10535
10354
|
"docs": {
|
|
10536
|
-
"remarks": "Incrementing this integer value will cause Terraform to update the write-only value.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10355
|
+
"remarks": "Incrementing this integer value will cause Terraform to update the write-only value.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#set_wo_revision Release#set_wo_revision}",
|
|
10537
10356
|
"stability": "stable",
|
|
10538
10357
|
"summary": "The current revision of the write-only \"set_wo\" attribute."
|
|
10539
10358
|
},
|
|
@@ -10551,7 +10370,7 @@
|
|
|
10551
10370
|
{
|
|
10552
10371
|
"abstract": true,
|
|
10553
10372
|
"docs": {
|
|
10554
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10373
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#skip_crds Release#skip_crds}",
|
|
10555
10374
|
"stability": "stable",
|
|
10556
10375
|
"summary": "If set, no CRDs will be installed. By default, CRDs are installed if not already present."
|
|
10557
10376
|
},
|
|
@@ -10578,7 +10397,7 @@
|
|
|
10578
10397
|
{
|
|
10579
10398
|
"abstract": true,
|
|
10580
10399
|
"docs": {
|
|
10581
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10400
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#take_ownership Release#take_ownership}",
|
|
10582
10401
|
"stability": "stable",
|
|
10583
10402
|
"summary": "If set, Helm will take ownership of resources not already annotated by this release. Useful for migrations or recovery."
|
|
10584
10403
|
},
|
|
@@ -10605,7 +10424,7 @@
|
|
|
10605
10424
|
{
|
|
10606
10425
|
"abstract": true,
|
|
10607
10426
|
"docs": {
|
|
10608
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10427
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#timeout Release#timeout}",
|
|
10609
10428
|
"stability": "stable",
|
|
10610
10429
|
"summary": "Time in seconds to wait for any individual kubernetes operation."
|
|
10611
10430
|
},
|
|
@@ -10624,7 +10443,7 @@
|
|
|
10624
10443
|
"abstract": true,
|
|
10625
10444
|
"docs": {
|
|
10626
10445
|
"stability": "stable",
|
|
10627
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10446
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#timeouts Release#timeouts}."
|
|
10628
10447
|
},
|
|
10629
10448
|
"immutable": true,
|
|
10630
10449
|
"locationInModule": {
|
|
@@ -10640,7 +10459,7 @@
|
|
|
10640
10459
|
{
|
|
10641
10460
|
"abstract": true,
|
|
10642
10461
|
"docs": {
|
|
10643
|
-
"remarks": "This is equivalent to running 'helm upgrade --install'. WARNING: this may not be suitable for production use -- see the 'Upgrade Mode' note in the provider documentation. Defaults to `false`.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10462
|
+
"remarks": "This is equivalent to running 'helm upgrade --install'. WARNING: this may not be suitable for production use -- see the 'Upgrade Mode' note in the provider documentation. Defaults to `false`.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#upgrade_install Release#upgrade_install}",
|
|
10644
10463
|
"stability": "stable",
|
|
10645
10464
|
"summary": "If true, the provider will install the release at the specified version even if a release not controlled by the provider is present."
|
|
10646
10465
|
},
|
|
@@ -10667,7 +10486,7 @@
|
|
|
10667
10486
|
{
|
|
10668
10487
|
"abstract": true,
|
|
10669
10488
|
"docs": {
|
|
10670
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10489
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#values Release#values}",
|
|
10671
10490
|
"stability": "stable",
|
|
10672
10491
|
"summary": "List of values in raw YAML format to pass to helm."
|
|
10673
10492
|
},
|
|
@@ -10690,7 +10509,7 @@
|
|
|
10690
10509
|
{
|
|
10691
10510
|
"abstract": true,
|
|
10692
10511
|
"docs": {
|
|
10693
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10512
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#verify Release#verify}",
|
|
10694
10513
|
"stability": "stable",
|
|
10695
10514
|
"summary": "Verify the package before installing it."
|
|
10696
10515
|
},
|
|
@@ -10717,7 +10536,7 @@
|
|
|
10717
10536
|
{
|
|
10718
10537
|
"abstract": true,
|
|
10719
10538
|
"docs": {
|
|
10720
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10539
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#version Release#version}",
|
|
10721
10540
|
"stability": "stable",
|
|
10722
10541
|
"summary": "Specify the exact chart version to install. If this is not specified, the latest version is installed."
|
|
10723
10542
|
},
|
|
@@ -10735,7 +10554,7 @@
|
|
|
10735
10554
|
{
|
|
10736
10555
|
"abstract": true,
|
|
10737
10556
|
"docs": {
|
|
10738
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10557
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#wait Release#wait}",
|
|
10739
10558
|
"stability": "stable",
|
|
10740
10559
|
"summary": "Will wait until all resources are in a ready state before marking the release as successful."
|
|
10741
10560
|
},
|
|
@@ -10762,7 +10581,7 @@
|
|
|
10762
10581
|
{
|
|
10763
10582
|
"abstract": true,
|
|
10764
10583
|
"docs": {
|
|
10765
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10584
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#wait_for_jobs Release#wait_for_jobs}",
|
|
10766
10585
|
"stability": "stable",
|
|
10767
10586
|
"summary": "If wait is enabled, will wait until all Jobs have been completed before marking the release as successful."
|
|
10768
10587
|
},
|
|
@@ -11024,7 +10843,7 @@
|
|
|
11024
10843
|
{
|
|
11025
10844
|
"abstract": true,
|
|
11026
10845
|
"docs": {
|
|
11027
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10846
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#binary_path Release#binary_path}",
|
|
11028
10847
|
"stability": "stable",
|
|
11029
10848
|
"summary": "The common binary path."
|
|
11030
10849
|
},
|
|
@@ -11041,7 +10860,7 @@
|
|
|
11041
10860
|
{
|
|
11042
10861
|
"abstract": true,
|
|
11043
10862
|
"docs": {
|
|
11044
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
10863
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#args Release#args}",
|
|
11045
10864
|
"stability": "stable",
|
|
11046
10865
|
"summary": "An argument to the post-renderer (can specify multiple)."
|
|
11047
10866
|
},
|
|
@@ -11231,7 +11050,7 @@
|
|
|
11231
11050
|
"abstract": true,
|
|
11232
11051
|
"docs": {
|
|
11233
11052
|
"stability": "stable",
|
|
11234
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11053
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#name Release#name}."
|
|
11235
11054
|
},
|
|
11236
11055
|
"immutable": true,
|
|
11237
11056
|
"locationInModule": {
|
|
@@ -11247,7 +11066,7 @@
|
|
|
11247
11066
|
"abstract": true,
|
|
11248
11067
|
"docs": {
|
|
11249
11068
|
"stability": "stable",
|
|
11250
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11069
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#type Release#type}."
|
|
11251
11070
|
},
|
|
11252
11071
|
"immutable": true,
|
|
11253
11072
|
"locationInModule": {
|
|
@@ -11264,7 +11083,7 @@
|
|
|
11264
11083
|
"abstract": true,
|
|
11265
11084
|
"docs": {
|
|
11266
11085
|
"stability": "stable",
|
|
11267
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11086
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#value Release#value}."
|
|
11268
11087
|
},
|
|
11269
11088
|
"immutable": true,
|
|
11270
11089
|
"locationInModule": {
|
|
@@ -11361,54 +11180,6 @@
|
|
|
11361
11180
|
"name": "ReleaseSetList",
|
|
11362
11181
|
"namespace": "release",
|
|
11363
11182
|
"properties": [
|
|
11364
|
-
{
|
|
11365
|
-
"docs": {
|
|
11366
|
-
"stability": "stable",
|
|
11367
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
11368
|
-
},
|
|
11369
|
-
"locationInModule": {
|
|
11370
|
-
"filename": "src/release/index.ts",
|
|
11371
|
-
"line": 673
|
|
11372
|
-
},
|
|
11373
|
-
"name": "terraformAttribute",
|
|
11374
|
-
"overrides": "cdktn.ComplexList",
|
|
11375
|
-
"protected": true,
|
|
11376
|
-
"type": {
|
|
11377
|
-
"primitive": "string"
|
|
11378
|
-
}
|
|
11379
|
-
},
|
|
11380
|
-
{
|
|
11381
|
-
"docs": {
|
|
11382
|
-
"stability": "stable",
|
|
11383
|
-
"summary": "The parent resource."
|
|
11384
|
-
},
|
|
11385
|
-
"locationInModule": {
|
|
11386
|
-
"filename": "src/release/index.ts",
|
|
11387
|
-
"line": 673
|
|
11388
|
-
},
|
|
11389
|
-
"name": "terraformResource",
|
|
11390
|
-
"overrides": "cdktn.ComplexList",
|
|
11391
|
-
"protected": true,
|
|
11392
|
-
"type": {
|
|
11393
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
11394
|
-
}
|
|
11395
|
-
},
|
|
11396
|
-
{
|
|
11397
|
-
"docs": {
|
|
11398
|
-
"stability": "stable",
|
|
11399
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
11400
|
-
},
|
|
11401
|
-
"locationInModule": {
|
|
11402
|
-
"filename": "src/release/index.ts",
|
|
11403
|
-
"line": 673
|
|
11404
|
-
},
|
|
11405
|
-
"name": "wrapsSet",
|
|
11406
|
-
"overrides": "cdktn.ComplexList",
|
|
11407
|
-
"protected": true,
|
|
11408
|
-
"type": {
|
|
11409
|
-
"primitive": "boolean"
|
|
11410
|
-
}
|
|
11411
|
-
},
|
|
11412
11183
|
{
|
|
11413
11184
|
"docs": {
|
|
11414
11185
|
"stability": "stable"
|
|
@@ -11459,7 +11230,7 @@
|
|
|
11459
11230
|
"abstract": true,
|
|
11460
11231
|
"docs": {
|
|
11461
11232
|
"stability": "stable",
|
|
11462
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11233
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#name Release#name}."
|
|
11463
11234
|
},
|
|
11464
11235
|
"immutable": true,
|
|
11465
11236
|
"locationInModule": {
|
|
@@ -11475,7 +11246,7 @@
|
|
|
11475
11246
|
"abstract": true,
|
|
11476
11247
|
"docs": {
|
|
11477
11248
|
"stability": "stable",
|
|
11478
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11249
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#value Release#value}."
|
|
11479
11250
|
},
|
|
11480
11251
|
"immutable": true,
|
|
11481
11252
|
"locationInModule": {
|
|
@@ -11576,54 +11347,6 @@
|
|
|
11576
11347
|
"name": "ReleaseSetListStructList",
|
|
11577
11348
|
"namespace": "release",
|
|
11578
11349
|
"properties": [
|
|
11579
|
-
{
|
|
11580
|
-
"docs": {
|
|
11581
|
-
"stability": "stable",
|
|
11582
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
11583
|
-
},
|
|
11584
|
-
"locationInModule": {
|
|
11585
|
-
"filename": "src/release/index.ts",
|
|
11586
|
-
"line": 816
|
|
11587
|
-
},
|
|
11588
|
-
"name": "terraformAttribute",
|
|
11589
|
-
"overrides": "cdktn.ComplexList",
|
|
11590
|
-
"protected": true,
|
|
11591
|
-
"type": {
|
|
11592
|
-
"primitive": "string"
|
|
11593
|
-
}
|
|
11594
|
-
},
|
|
11595
|
-
{
|
|
11596
|
-
"docs": {
|
|
11597
|
-
"stability": "stable",
|
|
11598
|
-
"summary": "The parent resource."
|
|
11599
|
-
},
|
|
11600
|
-
"locationInModule": {
|
|
11601
|
-
"filename": "src/release/index.ts",
|
|
11602
|
-
"line": 816
|
|
11603
|
-
},
|
|
11604
|
-
"name": "terraformResource",
|
|
11605
|
-
"overrides": "cdktn.ComplexList",
|
|
11606
|
-
"protected": true,
|
|
11607
|
-
"type": {
|
|
11608
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
11609
|
-
}
|
|
11610
|
-
},
|
|
11611
|
-
{
|
|
11612
|
-
"docs": {
|
|
11613
|
-
"stability": "stable",
|
|
11614
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
11615
|
-
},
|
|
11616
|
-
"locationInModule": {
|
|
11617
|
-
"filename": "src/release/index.ts",
|
|
11618
|
-
"line": 816
|
|
11619
|
-
},
|
|
11620
|
-
"name": "wrapsSet",
|
|
11621
|
-
"overrides": "cdktn.ComplexList",
|
|
11622
|
-
"protected": true,
|
|
11623
|
-
"type": {
|
|
11624
|
-
"primitive": "boolean"
|
|
11625
|
-
}
|
|
11626
|
-
},
|
|
11627
11350
|
{
|
|
11628
11351
|
"docs": {
|
|
11629
11352
|
"stability": "stable"
|
|
@@ -12022,7 +11745,7 @@
|
|
|
12022
11745
|
"abstract": true,
|
|
12023
11746
|
"docs": {
|
|
12024
11747
|
"stability": "stable",
|
|
12025
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11748
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#name Release#name}."
|
|
12026
11749
|
},
|
|
12027
11750
|
"immutable": true,
|
|
12028
11751
|
"locationInModule": {
|
|
@@ -12038,7 +11761,7 @@
|
|
|
12038
11761
|
"abstract": true,
|
|
12039
11762
|
"docs": {
|
|
12040
11763
|
"stability": "stable",
|
|
12041
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11764
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#value Release#value}."
|
|
12042
11765
|
},
|
|
12043
11766
|
"immutable": true,
|
|
12044
11767
|
"locationInModule": {
|
|
@@ -12054,7 +11777,7 @@
|
|
|
12054
11777
|
"abstract": true,
|
|
12055
11778
|
"docs": {
|
|
12056
11779
|
"stability": "stable",
|
|
12057
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
11780
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#type Release#type}."
|
|
12058
11781
|
},
|
|
12059
11782
|
"immutable": true,
|
|
12060
11783
|
"locationInModule": {
|
|
@@ -12151,54 +11874,6 @@
|
|
|
12151
11874
|
"name": "ReleaseSetSensitiveList",
|
|
12152
11875
|
"namespace": "release",
|
|
12153
11876
|
"properties": [
|
|
12154
|
-
{
|
|
12155
|
-
"docs": {
|
|
12156
|
-
"stability": "stable",
|
|
12157
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
12158
|
-
},
|
|
12159
|
-
"locationInModule": {
|
|
12160
|
-
"filename": "src/release/index.ts",
|
|
12161
|
-
"line": 992
|
|
12162
|
-
},
|
|
12163
|
-
"name": "terraformAttribute",
|
|
12164
|
-
"overrides": "cdktn.ComplexList",
|
|
12165
|
-
"protected": true,
|
|
12166
|
-
"type": {
|
|
12167
|
-
"primitive": "string"
|
|
12168
|
-
}
|
|
12169
|
-
},
|
|
12170
|
-
{
|
|
12171
|
-
"docs": {
|
|
12172
|
-
"stability": "stable",
|
|
12173
|
-
"summary": "The parent resource."
|
|
12174
|
-
},
|
|
12175
|
-
"locationInModule": {
|
|
12176
|
-
"filename": "src/release/index.ts",
|
|
12177
|
-
"line": 992
|
|
12178
|
-
},
|
|
12179
|
-
"name": "terraformResource",
|
|
12180
|
-
"overrides": "cdktn.ComplexList",
|
|
12181
|
-
"protected": true,
|
|
12182
|
-
"type": {
|
|
12183
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
12184
|
-
}
|
|
12185
|
-
},
|
|
12186
|
-
{
|
|
12187
|
-
"docs": {
|
|
12188
|
-
"stability": "stable",
|
|
12189
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
12190
|
-
},
|
|
12191
|
-
"locationInModule": {
|
|
12192
|
-
"filename": "src/release/index.ts",
|
|
12193
|
-
"line": 992
|
|
12194
|
-
},
|
|
12195
|
-
"name": "wrapsSet",
|
|
12196
|
-
"overrides": "cdktn.ComplexList",
|
|
12197
|
-
"protected": true,
|
|
12198
|
-
"type": {
|
|
12199
|
-
"primitive": "boolean"
|
|
12200
|
-
}
|
|
12201
|
-
},
|
|
12202
11877
|
{
|
|
12203
11878
|
"docs": {
|
|
12204
11879
|
"stability": "stable"
|
|
@@ -12433,7 +12108,7 @@
|
|
|
12433
12108
|
"abstract": true,
|
|
12434
12109
|
"docs": {
|
|
12435
12110
|
"stability": "stable",
|
|
12436
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12111
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#name Release#name}."
|
|
12437
12112
|
},
|
|
12438
12113
|
"immutable": true,
|
|
12439
12114
|
"locationInModule": {
|
|
@@ -12449,7 +12124,7 @@
|
|
|
12449
12124
|
"abstract": true,
|
|
12450
12125
|
"docs": {
|
|
12451
12126
|
"stability": "stable",
|
|
12452
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12127
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#value Release#value}."
|
|
12453
12128
|
},
|
|
12454
12129
|
"immutable": true,
|
|
12455
12130
|
"locationInModule": {
|
|
@@ -12465,7 +12140,7 @@
|
|
|
12465
12140
|
"abstract": true,
|
|
12466
12141
|
"docs": {
|
|
12467
12142
|
"stability": "stable",
|
|
12468
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12143
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#type Release#type}."
|
|
12469
12144
|
},
|
|
12470
12145
|
"immutable": true,
|
|
12471
12146
|
"locationInModule": {
|
|
@@ -12562,54 +12237,6 @@
|
|
|
12562
12237
|
"name": "ReleaseSetWoList",
|
|
12563
12238
|
"namespace": "release",
|
|
12564
12239
|
"properties": [
|
|
12565
|
-
{
|
|
12566
|
-
"docs": {
|
|
12567
|
-
"stability": "stable",
|
|
12568
|
-
"summary": "The attribute on the parent resource this class is referencing."
|
|
12569
|
-
},
|
|
12570
|
-
"locationInModule": {
|
|
12571
|
-
"filename": "src/release/index.ts",
|
|
12572
|
-
"line": 1168
|
|
12573
|
-
},
|
|
12574
|
-
"name": "terraformAttribute",
|
|
12575
|
-
"overrides": "cdktn.ComplexList",
|
|
12576
|
-
"protected": true,
|
|
12577
|
-
"type": {
|
|
12578
|
-
"primitive": "string"
|
|
12579
|
-
}
|
|
12580
|
-
},
|
|
12581
|
-
{
|
|
12582
|
-
"docs": {
|
|
12583
|
-
"stability": "stable",
|
|
12584
|
-
"summary": "The parent resource."
|
|
12585
|
-
},
|
|
12586
|
-
"locationInModule": {
|
|
12587
|
-
"filename": "src/release/index.ts",
|
|
12588
|
-
"line": 1168
|
|
12589
|
-
},
|
|
12590
|
-
"name": "terraformResource",
|
|
12591
|
-
"overrides": "cdktn.ComplexList",
|
|
12592
|
-
"protected": true,
|
|
12593
|
-
"type": {
|
|
12594
|
-
"fqn": "cdktn.IInterpolatingParent"
|
|
12595
|
-
}
|
|
12596
|
-
},
|
|
12597
|
-
{
|
|
12598
|
-
"docs": {
|
|
12599
|
-
"stability": "stable",
|
|
12600
|
-
"summary": "whether the list is wrapping a set (will add tolist() to be able to access an item via an index)."
|
|
12601
|
-
},
|
|
12602
|
-
"locationInModule": {
|
|
12603
|
-
"filename": "src/release/index.ts",
|
|
12604
|
-
"line": 1168
|
|
12605
|
-
},
|
|
12606
|
-
"name": "wrapsSet",
|
|
12607
|
-
"overrides": "cdktn.ComplexList",
|
|
12608
|
-
"protected": true,
|
|
12609
|
-
"type": {
|
|
12610
|
-
"primitive": "boolean"
|
|
12611
|
-
}
|
|
12612
|
-
},
|
|
12613
12240
|
{
|
|
12614
12241
|
"docs": {
|
|
12615
12242
|
"stability": "stable"
|
|
@@ -12843,7 +12470,7 @@
|
|
|
12843
12470
|
{
|
|
12844
12471
|
"abstract": true,
|
|
12845
12472
|
"docs": {
|
|
12846
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12473
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#create Release#create}",
|
|
12847
12474
|
"stability": "stable",
|
|
12848
12475
|
"summary": "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)."
|
|
12849
12476
|
},
|
|
@@ -12861,7 +12488,7 @@
|
|
|
12861
12488
|
{
|
|
12862
12489
|
"abstract": true,
|
|
12863
12490
|
"docs": {
|
|
12864
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12491
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#delete Release#delete}",
|
|
12865
12492
|
"stability": "stable",
|
|
12866
12493
|
"summary": "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."
|
|
12867
12494
|
},
|
|
@@ -12879,7 +12506,7 @@
|
|
|
12879
12506
|
{
|
|
12880
12507
|
"abstract": true,
|
|
12881
12508
|
"docs": {
|
|
12882
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12509
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#read Release#read}",
|
|
12883
12510
|
"stability": "stable",
|
|
12884
12511
|
"summary": "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."
|
|
12885
12512
|
},
|
|
@@ -12897,7 +12524,7 @@
|
|
|
12897
12524
|
{
|
|
12898
12525
|
"abstract": true,
|
|
12899
12526
|
"docs": {
|
|
12900
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.
|
|
12527
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.1.2/docs/resources/release#update Release#update}",
|
|
12901
12528
|
"stability": "stable",
|
|
12902
12529
|
"summary": "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)."
|
|
12903
12530
|
},
|
|
@@ -13140,6 +12767,6 @@
|
|
|
13140
12767
|
"symbolId": "src/release/index:ReleaseTimeoutsOutputReference"
|
|
13141
12768
|
}
|
|
13142
12769
|
},
|
|
13143
|
-
"version": "
|
|
13144
|
-
"fingerprint": "
|
|
12770
|
+
"version": "14.0.3",
|
|
12771
|
+
"fingerprint": "QmA3uKJaqDjUyjoOsesr4u1EefOXAQGt1zIcryTffno="
|
|
13145
12772
|
}
|