@cdktn/provider-local 12.0.0 → 12.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +48 -48
- package/README.md +3 -3
- package/lib/data-local-command/index.d.ts +8 -8
- package/lib/data-local-command/index.js +6 -6
- package/lib/data-local-file/index.d.ts +4 -4
- package/lib/data-local-file/index.js +6 -6
- package/lib/data-local-sensitive-file/index.d.ts +4 -4
- package/lib/data-local-sensitive-file/index.js +6 -6
- package/lib/file/index.d.ts +10 -10
- package/lib/file/index.js +6 -6
- package/lib/provider/index.d.ts +4 -4
- package/lib/provider/index.js +6 -6
- package/lib/sensitive-file/index.d.ts +9 -9
- package/lib/sensitive-file/index.js +6 -6
- package/package.json +12 -5
package/.jsii
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
"name": "@cdktn/provider-local",
|
|
96
96
|
"readme": {
|
|
97
|
-
"markdown": "\n# CDKTN prebuilt bindings for hashicorp/local provider version 2.
|
|
97
|
+
"markdown": "\n# CDKTN prebuilt bindings for hashicorp/local provider version 2.8.0\n\nThis repo builds and publishes the [Terraform local provider](https://registry.terraform.io/providers/hashicorp/local/2.8.0/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-local](https://www.npmjs.com/package/@cdktn/provider-local).\n\n`npm install @cdktn/provider-local`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktn-provider-local](https://pypi.org/project/cdktn-provider-local).\n\n`pipenv install cdktn-provider-local`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/Io.Cdktn.Providers.Local](https://www.nuget.org/packages/Io.Cdktn.Providers.Local).\n\n`dotnet add package Io.Cdktn.Providers.Local`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-local](https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-local).\n\n```\n<dependency>\n <groupId>io.cdktn</groupId>\n <artifactId>cdktn-provider-local</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-local-go`](https://github.com/cdktn-io/cdktn-provider-local-go) package.\n\n`go get github.com/cdktn-io/cdktn-provider-local-go/local/<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-local-go/blob/main/local/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-local).\n\n## Versioning\n\nThis project is explicitly not tracking the Terraform local provider version 1:1. In fact, it always tracks `latest` of `~> 2.1` 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 local provider](https://registry.terraform.io/providers/hashicorp/local/2.8.0)\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": 9
|
|
109
109
|
},
|
|
110
110
|
"readme": {
|
|
111
|
-
"markdown": "# `data_local_command`\n\nRefer to the Terraform Registry for docs: [`data_local_command`](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
111
|
+
"markdown": "# `data_local_command`\n\nRefer to the Terraform Registry for docs: [`data_local_command`](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command).\n"
|
|
112
112
|
},
|
|
113
113
|
"symbolId": "src/data-local-command/index:"
|
|
114
114
|
},
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"line": 10
|
|
119
119
|
},
|
|
120
120
|
"readme": {
|
|
121
|
-
"markdown": "# `data_local_file`\n\nRefer to the Terraform Registry for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
121
|
+
"markdown": "# `data_local_file`\n\nRefer to the Terraform Registry for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/file).\n"
|
|
122
122
|
},
|
|
123
123
|
"symbolId": "src/data-local-file/index:"
|
|
124
124
|
},
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"line": 11
|
|
129
129
|
},
|
|
130
130
|
"readme": {
|
|
131
|
-
"markdown": "# `data_local_sensitive_file`\n\nRefer to the Terraform Registry for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
131
|
+
"markdown": "# `data_local_sensitive_file`\n\nRefer to the Terraform Registry for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/sensitive_file).\n"
|
|
132
132
|
},
|
|
133
133
|
"symbolId": "src/data-local-sensitive-file/index:"
|
|
134
134
|
},
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"line": 7
|
|
139
139
|
},
|
|
140
140
|
"readme": {
|
|
141
|
-
"markdown": "# `local_file`\n\nRefer to the Terraform Registry for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
141
|
+
"markdown": "# `local_file`\n\nRefer to the Terraform Registry for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file).\n"
|
|
142
142
|
},
|
|
143
143
|
"symbolId": "src/file/index:"
|
|
144
144
|
},
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"line": 12
|
|
149
149
|
},
|
|
150
150
|
"readme": {
|
|
151
|
-
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
151
|
+
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs).\n"
|
|
152
152
|
},
|
|
153
153
|
"symbolId": "src/provider/index:"
|
|
154
154
|
},
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
"line": 8
|
|
159
159
|
},
|
|
160
160
|
"readme": {
|
|
161
|
-
"markdown": "# `local_sensitive_file`\n\nRefer to the Terraform Registry for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
161
|
+
"markdown": "# `local_sensitive_file`\n\nRefer to the Terraform Registry for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file).\n"
|
|
162
162
|
},
|
|
163
163
|
"symbolId": "src/sensitive-file/index:"
|
|
164
164
|
}
|
|
@@ -182,13 +182,13 @@
|
|
|
182
182
|
"base": "cdktn.TerraformDataSource",
|
|
183
183
|
"docs": {
|
|
184
184
|
"stability": "stable",
|
|
185
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
185
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command local_command}."
|
|
186
186
|
},
|
|
187
187
|
"fqn": "@cdktn/provider-local.dataLocalCommand.DataLocalCommand",
|
|
188
188
|
"initializer": {
|
|
189
189
|
"docs": {
|
|
190
190
|
"stability": "stable",
|
|
191
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
191
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command local_command} Data Source."
|
|
192
192
|
},
|
|
193
193
|
"locationInModule": {
|
|
194
194
|
"filename": "src/data-local-command/index.ts",
|
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"docs": {
|
|
262
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
262
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#import import section} in the documentation of this resource for the id to use",
|
|
263
263
|
"summary": "The id of the existing DataLocalCommand that should be imported."
|
|
264
264
|
},
|
|
265
265
|
"name": "importFromId",
|
|
@@ -623,7 +623,7 @@
|
|
|
623
623
|
{
|
|
624
624
|
"abstract": true,
|
|
625
625
|
"docs": {
|
|
626
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
626
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#command DataLocalCommand#command}",
|
|
627
627
|
"stability": "stable",
|
|
628
628
|
"summary": "Executable name to be discovered on the PATH or absolute path to executable."
|
|
629
629
|
},
|
|
@@ -640,7 +640,7 @@
|
|
|
640
640
|
{
|
|
641
641
|
"abstract": true,
|
|
642
642
|
"docs": {
|
|
643
|
-
"remarks": "Further assertions can be made of the `exit_code` value with the [`check` block](https://developer.hashicorp.com/terraform/language/block/check). Defaults to false.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
643
|
+
"remarks": "Further assertions can be made of the `exit_code` value with the [`check` block](https://developer.hashicorp.com/terraform/language/block/check). Defaults to false.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#allow_non_zero_exit_code DataLocalCommand#allow_non_zero_exit_code}",
|
|
644
644
|
"stability": "stable",
|
|
645
645
|
"summary": "Indicates that the command returning a non-zero exit code should be treated as a successful execution."
|
|
646
646
|
},
|
|
@@ -667,7 +667,7 @@
|
|
|
667
667
|
{
|
|
668
668
|
"abstract": true,
|
|
669
669
|
"docs": {
|
|
670
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
670
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#arguments DataLocalCommand#arguments}",
|
|
671
671
|
"stability": "stable",
|
|
672
672
|
"summary": "Arguments to be passed to the given command. Any `null` arguments will be removed from the list."
|
|
673
673
|
},
|
|
@@ -690,7 +690,7 @@
|
|
|
690
690
|
{
|
|
691
691
|
"abstract": true,
|
|
692
692
|
"docs": {
|
|
693
|
-
"remarks": "[Terraform values](https://developer.hashicorp.com/terraform/language/expressions/types) can be encoded by any Terraform encode function, for example, [`jsonencode`](https://developer.hashicorp.com/terraform/language/functions/jsonencode).\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
693
|
+
"remarks": "[Terraform values](https://developer.hashicorp.com/terraform/language/expressions/types) can be encoded by any Terraform encode function, for example, [`jsonencode`](https://developer.hashicorp.com/terraform/language/functions/jsonencode).\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#stdin DataLocalCommand#stdin}",
|
|
694
694
|
"stability": "stable",
|
|
695
695
|
"summary": "Data to be passed to the given command's standard input as a UTF-8 string."
|
|
696
696
|
},
|
|
@@ -708,7 +708,7 @@
|
|
|
708
708
|
{
|
|
709
709
|
"abstract": true,
|
|
710
710
|
"docs": {
|
|
711
|
-
"remarks": "If not provided, defaults to the Terraform working directory.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
711
|
+
"remarks": "If not provided, defaults to the Terraform working directory.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#working_directory DataLocalCommand#working_directory}",
|
|
712
712
|
"stability": "stable",
|
|
713
713
|
"summary": "The directory path where the command should be executed, either an absolute path or relative to the Terraform working directory."
|
|
714
714
|
},
|
|
@@ -731,13 +731,13 @@
|
|
|
731
731
|
"base": "cdktn.TerraformDataSource",
|
|
732
732
|
"docs": {
|
|
733
733
|
"stability": "stable",
|
|
734
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
734
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/file local_file}."
|
|
735
735
|
},
|
|
736
736
|
"fqn": "@cdktn/provider-local.dataLocalFile.DataLocalFile",
|
|
737
737
|
"initializer": {
|
|
738
738
|
"docs": {
|
|
739
739
|
"stability": "stable",
|
|
740
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
740
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/file local_file} Data Source."
|
|
741
741
|
},
|
|
742
742
|
"locationInModule": {
|
|
743
743
|
"filename": "src/data-local-file/index.ts",
|
|
@@ -808,7 +808,7 @@
|
|
|
808
808
|
},
|
|
809
809
|
{
|
|
810
810
|
"docs": {
|
|
811
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
811
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/file#import import section} in the documentation of this resource for the id to use",
|
|
812
812
|
"summary": "The id of the existing DataLocalFile that should be imported."
|
|
813
813
|
},
|
|
814
814
|
"name": "importFromId",
|
|
@@ -1076,7 +1076,7 @@
|
|
|
1076
1076
|
{
|
|
1077
1077
|
"abstract": true,
|
|
1078
1078
|
"docs": {
|
|
1079
|
-
"remarks": "The data source will return an error if the file does not exist.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1079
|
+
"remarks": "The data source will return an error if the file does not exist.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/file#filename DataLocalFile#filename}",
|
|
1080
1080
|
"stability": "stable",
|
|
1081
1081
|
"summary": "Path to the file that will be read."
|
|
1082
1082
|
},
|
|
@@ -1098,13 +1098,13 @@
|
|
|
1098
1098
|
"base": "cdktn.TerraformDataSource",
|
|
1099
1099
|
"docs": {
|
|
1100
1100
|
"stability": "stable",
|
|
1101
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1101
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/sensitive_file local_sensitive_file}."
|
|
1102
1102
|
},
|
|
1103
1103
|
"fqn": "@cdktn/provider-local.dataLocalSensitiveFile.DataLocalSensitiveFile",
|
|
1104
1104
|
"initializer": {
|
|
1105
1105
|
"docs": {
|
|
1106
1106
|
"stability": "stable",
|
|
1107
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1107
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/sensitive_file local_sensitive_file} Data Source."
|
|
1108
1108
|
},
|
|
1109
1109
|
"locationInModule": {
|
|
1110
1110
|
"filename": "src/data-local-sensitive-file/index.ts",
|
|
@@ -1175,7 +1175,7 @@
|
|
|
1175
1175
|
},
|
|
1176
1176
|
{
|
|
1177
1177
|
"docs": {
|
|
1178
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1178
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/sensitive_file#import import section} in the documentation of this resource for the id to use",
|
|
1179
1179
|
"summary": "The id of the existing DataLocalSensitiveFile that should be imported."
|
|
1180
1180
|
},
|
|
1181
1181
|
"name": "importFromId",
|
|
@@ -1443,7 +1443,7 @@
|
|
|
1443
1443
|
{
|
|
1444
1444
|
"abstract": true,
|
|
1445
1445
|
"docs": {
|
|
1446
|
-
"remarks": "The data source will return an error if the file does not exist.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1446
|
+
"remarks": "The data source will return an error if the file does not exist.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename}",
|
|
1447
1447
|
"stability": "stable",
|
|
1448
1448
|
"summary": "Path to the file that will be read."
|
|
1449
1449
|
},
|
|
@@ -1465,13 +1465,13 @@
|
|
|
1465
1465
|
"base": "cdktn.TerraformResource",
|
|
1466
1466
|
"docs": {
|
|
1467
1467
|
"stability": "stable",
|
|
1468
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1468
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file local_file}."
|
|
1469
1469
|
},
|
|
1470
1470
|
"fqn": "@cdktn/provider-local.file.File",
|
|
1471
1471
|
"initializer": {
|
|
1472
1472
|
"docs": {
|
|
1473
1473
|
"stability": "stable",
|
|
1474
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1474
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file local_file} Resource."
|
|
1475
1475
|
},
|
|
1476
1476
|
"locationInModule": {
|
|
1477
1477
|
"filename": "src/file/index.ts",
|
|
@@ -1542,7 +1542,7 @@
|
|
|
1542
1542
|
},
|
|
1543
1543
|
{
|
|
1544
1544
|
"docs": {
|
|
1545
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
1545
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#import import section} in the documentation of this resource for the id to use",
|
|
1546
1546
|
"summary": "The id of the existing File that should be imported."
|
|
1547
1547
|
},
|
|
1548
1548
|
"name": "importFromId",
|
|
@@ -2010,7 +2010,7 @@
|
|
|
2010
2010
|
{
|
|
2011
2011
|
"abstract": true,
|
|
2012
2012
|
"docs": {
|
|
2013
|
-
"remarks": "Missing parent directories will be created.\n If the file already exists, it will be overridden with the given content.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2013
|
+
"remarks": "Missing parent directories will be created.\n If the file already exists, it will be overridden with the given content.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#filename File#filename}",
|
|
2014
2014
|
"stability": "stable",
|
|
2015
2015
|
"summary": "The path to the file that will be created."
|
|
2016
2016
|
},
|
|
@@ -2027,7 +2027,7 @@
|
|
|
2027
2027
|
{
|
|
2028
2028
|
"abstract": true,
|
|
2029
2029
|
"docs": {
|
|
2030
|
-
"remarks": "Conflicts with `sensitive_content`, `content_base64` and `source`.\n Exactly one of these four arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2030
|
+
"remarks": "Conflicts with `sensitive_content`, `content_base64` and `source`.\n Exactly one of these four arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#content File#content}",
|
|
2031
2031
|
"stability": "stable",
|
|
2032
2032
|
"summary": "Content to store in the file, expected to be a UTF-8 encoded string."
|
|
2033
2033
|
},
|
|
@@ -2045,7 +2045,7 @@
|
|
|
2045
2045
|
{
|
|
2046
2046
|
"abstract": true,
|
|
2047
2047
|
"docs": {
|
|
2048
|
-
"remarks": "Conflicts with `content`, `sensitive_content` and `source`.\n Exactly one of these four arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2048
|
+
"remarks": "Conflicts with `content`, `sensitive_content` and `source`.\n Exactly one of these four arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#content_base64 File#content_base64}",
|
|
2049
2049
|
"stability": "stable",
|
|
2050
2050
|
"summary": "Content to store in the file, expected to be binary encoded as base64 string."
|
|
2051
2051
|
},
|
|
@@ -2063,7 +2063,7 @@
|
|
|
2063
2063
|
{
|
|
2064
2064
|
"abstract": true,
|
|
2065
2065
|
"docs": {
|
|
2066
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2066
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#directory_permission File#directory_permission}",
|
|
2067
2067
|
"stability": "stable",
|
|
2068
2068
|
"summary": "Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `\"0777\"`."
|
|
2069
2069
|
},
|
|
@@ -2081,7 +2081,7 @@
|
|
|
2081
2081
|
{
|
|
2082
2082
|
"abstract": true,
|
|
2083
2083
|
"docs": {
|
|
2084
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2084
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#file_permission File#file_permission}",
|
|
2085
2085
|
"stability": "stable",
|
|
2086
2086
|
"summary": "Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `\"0777\"`."
|
|
2087
2087
|
},
|
|
@@ -2099,7 +2099,7 @@
|
|
|
2099
2099
|
{
|
|
2100
2100
|
"abstract": true,
|
|
2101
2101
|
"docs": {
|
|
2102
|
-
"remarks": "Will not be displayed in diffs.\n Conflicts with `content`, `content_base64` and `source`.\n Exactly one of these four arguments must be specified.\n If in need to use _sensitive_ content, please use the [`local_sensitive_file`](./sensitive_file.html)\n resource instead.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2102
|
+
"remarks": "Will not be displayed in diffs.\n Conflicts with `content`, `content_base64` and `source`.\n Exactly one of these four arguments must be specified.\n If in need to use _sensitive_ content, please use the [`local_sensitive_file`](./sensitive_file.html)\n resource instead.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#sensitive_content File#sensitive_content}",
|
|
2103
2103
|
"stability": "stable",
|
|
2104
2104
|
"summary": "Sensitive content to store in the file, expected to be an UTF-8 encoded string."
|
|
2105
2105
|
},
|
|
@@ -2117,7 +2117,7 @@
|
|
|
2117
2117
|
{
|
|
2118
2118
|
"abstract": true,
|
|
2119
2119
|
"docs": {
|
|
2120
|
-
"remarks": "Conflicts with `content`, `sensitive_content` and `content_base64`.\n Exactly one of these four arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2120
|
+
"remarks": "Conflicts with `content`, `sensitive_content` and `content_base64`.\n Exactly one of these four arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/file#source File#source}",
|
|
2121
2121
|
"stability": "stable",
|
|
2122
2122
|
"summary": "Path to file to use as source for the one we are creating."
|
|
2123
2123
|
},
|
|
@@ -2140,13 +2140,13 @@
|
|
|
2140
2140
|
"base": "cdktn.TerraformProvider",
|
|
2141
2141
|
"docs": {
|
|
2142
2142
|
"stability": "stable",
|
|
2143
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2143
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs local}."
|
|
2144
2144
|
},
|
|
2145
2145
|
"fqn": "@cdktn/provider-local.provider.LocalProvider",
|
|
2146
2146
|
"initializer": {
|
|
2147
2147
|
"docs": {
|
|
2148
2148
|
"stability": "stable",
|
|
2149
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2149
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs local} Resource."
|
|
2150
2150
|
},
|
|
2151
2151
|
"locationInModule": {
|
|
2152
2152
|
"filename": "src/provider/index.ts",
|
|
@@ -2218,7 +2218,7 @@
|
|
|
2218
2218
|
},
|
|
2219
2219
|
{
|
|
2220
2220
|
"docs": {
|
|
2221
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2221
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs#import import section} in the documentation of this resource for the id to use",
|
|
2222
2222
|
"summary": "The id of the existing LocalProvider that should be imported."
|
|
2223
2223
|
},
|
|
2224
2224
|
"name": "importFromId",
|
|
@@ -2369,7 +2369,7 @@
|
|
|
2369
2369
|
{
|
|
2370
2370
|
"abstract": true,
|
|
2371
2371
|
"docs": {
|
|
2372
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2372
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs#alias LocalProvider#alias}",
|
|
2373
2373
|
"stability": "stable",
|
|
2374
2374
|
"summary": "Alias name."
|
|
2375
2375
|
},
|
|
@@ -2392,13 +2392,13 @@
|
|
|
2392
2392
|
"base": "cdktn.TerraformResource",
|
|
2393
2393
|
"docs": {
|
|
2394
2394
|
"stability": "stable",
|
|
2395
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2395
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file local_sensitive_file}."
|
|
2396
2396
|
},
|
|
2397
2397
|
"fqn": "@cdktn/provider-local.sensitiveFile.SensitiveFile",
|
|
2398
2398
|
"initializer": {
|
|
2399
2399
|
"docs": {
|
|
2400
2400
|
"stability": "stable",
|
|
2401
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2401
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file local_sensitive_file} Resource."
|
|
2402
2402
|
},
|
|
2403
2403
|
"locationInModule": {
|
|
2404
2404
|
"filename": "src/sensitive-file/index.ts",
|
|
@@ -2469,7 +2469,7 @@
|
|
|
2469
2469
|
},
|
|
2470
2470
|
{
|
|
2471
2471
|
"docs": {
|
|
2472
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2472
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#import import section} in the documentation of this resource for the id to use",
|
|
2473
2473
|
"summary": "The id of the existing SensitiveFile that should be imported."
|
|
2474
2474
|
},
|
|
2475
2475
|
"name": "importFromId",
|
|
@@ -2899,7 +2899,7 @@
|
|
|
2899
2899
|
{
|
|
2900
2900
|
"abstract": true,
|
|
2901
2901
|
"docs": {
|
|
2902
|
-
"remarks": "Missing parent directories will be created.\n If the file already exists, it will be overridden with the given content.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2902
|
+
"remarks": "Missing parent directories will be created.\n If the file already exists, it will be overridden with the given content.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#filename SensitiveFile#filename}",
|
|
2903
2903
|
"stability": "stable",
|
|
2904
2904
|
"summary": "The path to the file that will be created."
|
|
2905
2905
|
},
|
|
@@ -2916,7 +2916,7 @@
|
|
|
2916
2916
|
{
|
|
2917
2917
|
"abstract": true,
|
|
2918
2918
|
"docs": {
|
|
2919
|
-
"remarks": "Conflicts with `content_base64` and `source`.\n Exactly one of these three arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2919
|
+
"remarks": "Conflicts with `content_base64` and `source`.\n Exactly one of these three arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#content SensitiveFile#content}",
|
|
2920
2920
|
"stability": "stable",
|
|
2921
2921
|
"summary": "Sensitive Content to store in the file, expected to be a UTF-8 encoded string."
|
|
2922
2922
|
},
|
|
@@ -2934,7 +2934,7 @@
|
|
|
2934
2934
|
{
|
|
2935
2935
|
"abstract": true,
|
|
2936
2936
|
"docs": {
|
|
2937
|
-
"remarks": "Conflicts with `content` and `source`.\n Exactly one of these three arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2937
|
+
"remarks": "Conflicts with `content` and `source`.\n Exactly one of these three arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64}",
|
|
2938
2938
|
"stability": "stable",
|
|
2939
2939
|
"summary": "Sensitive Content to store in the file, expected to be binary encoded as base64 string."
|
|
2940
2940
|
},
|
|
@@ -2952,7 +2952,7 @@
|
|
|
2952
2952
|
{
|
|
2953
2953
|
"abstract": true,
|
|
2954
2954
|
"docs": {
|
|
2955
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2955
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission}",
|
|
2956
2956
|
"stability": "stable",
|
|
2957
2957
|
"summary": "Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `\"0700\"`."
|
|
2958
2958
|
},
|
|
@@ -2970,7 +2970,7 @@
|
|
|
2970
2970
|
{
|
|
2971
2971
|
"abstract": true,
|
|
2972
2972
|
"docs": {
|
|
2973
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2973
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission}",
|
|
2974
2974
|
"stability": "stable",
|
|
2975
2975
|
"summary": "Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `\"0700\"`."
|
|
2976
2976
|
},
|
|
@@ -2988,7 +2988,7 @@
|
|
|
2988
2988
|
{
|
|
2989
2989
|
"abstract": true,
|
|
2990
2990
|
"docs": {
|
|
2991
|
-
"remarks": "Conflicts with `content` and `content_base64`.\n Exactly one of these three arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
2991
|
+
"remarks": "Conflicts with `content` and `content_base64`.\n Exactly one of these three arguments must be specified.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/resources/sensitive_file#source SensitiveFile#source}",
|
|
2992
2992
|
"stability": "stable",
|
|
2993
2993
|
"summary": "Path to file to use as source for the one we are creating."
|
|
2994
2994
|
},
|
|
@@ -3007,6 +3007,6 @@
|
|
|
3007
3007
|
"symbolId": "src/sensitive-file/index:SensitiveFileConfig"
|
|
3008
3008
|
}
|
|
3009
3009
|
},
|
|
3010
|
-
"version": "12.
|
|
3011
|
-
"fingerprint": "
|
|
3010
|
+
"version": "12.1.0",
|
|
3011
|
+
"fingerprint": "2CcrDvGrzw6QgEOwi1JwLlafKXqst7rcrlOTNE4p/WY="
|
|
3012
3012
|
}
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
# CDKTN prebuilt bindings for hashicorp/local provider version 2.
|
|
2
|
+
# CDKTN prebuilt bindings for hashicorp/local provider version 2.8.0
|
|
3
3
|
|
|
4
|
-
This repo builds and publishes the [Terraform local provider](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
4
|
+
This repo builds and publishes the [Terraform local provider](https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs) bindings for [CDK Terrain](https://cdktn.io).
|
|
5
5
|
|
|
6
6
|
## Available Packages
|
|
7
7
|
|
|
@@ -63,7 +63,7 @@ This project is explicitly not tracking the Terraform local provider version 1:1
|
|
|
63
63
|
These are the upstream dependencies:
|
|
64
64
|
|
|
65
65
|
- [CDK Terrain](https://cdktn.io) - Last official release
|
|
66
|
-
- [Terraform local provider](https://registry.terraform.io/providers/hashicorp/local/2.
|
|
66
|
+
- [Terraform local provider](https://registry.terraform.io/providers/hashicorp/local/2.8.0)
|
|
67
67
|
- [Terraform Engine](https://terraform.io)
|
|
68
68
|
|
|
69
69
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
|
@@ -8,36 +8,36 @@ export interface DataLocalCommandConfig extends cdktn.TerraformMetaArguments {
|
|
|
8
8
|
/**
|
|
9
9
|
* Indicates that the command returning a non-zero exit code should be treated as a successful execution. Further assertions can be made of the `exit_code` value with the [`check` block](https://developer.hashicorp.com/terraform/language/block/check). Defaults to false.
|
|
10
10
|
*
|
|
11
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
11
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#allow_non_zero_exit_code DataLocalCommand#allow_non_zero_exit_code}
|
|
12
12
|
*/
|
|
13
13
|
readonly allowNonZeroExitCode?: boolean | cdktn.IResolvable;
|
|
14
14
|
/**
|
|
15
15
|
* Arguments to be passed to the given command. Any `null` arguments will be removed from the list.
|
|
16
16
|
*
|
|
17
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
17
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#arguments DataLocalCommand#arguments}
|
|
18
18
|
*/
|
|
19
19
|
readonly arguments?: string[];
|
|
20
20
|
/**
|
|
21
21
|
* Executable name to be discovered on the PATH or absolute path to executable.
|
|
22
22
|
*
|
|
23
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
23
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#command DataLocalCommand#command}
|
|
24
24
|
*/
|
|
25
25
|
readonly command: string;
|
|
26
26
|
/**
|
|
27
27
|
* Data to be passed to the given command's standard input as a UTF-8 string. [Terraform values](https://developer.hashicorp.com/terraform/language/expressions/types) can be encoded by any Terraform encode function, for example, [`jsonencode`](https://developer.hashicorp.com/terraform/language/functions/jsonencode).
|
|
28
28
|
*
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#stdin DataLocalCommand#stdin}
|
|
30
30
|
*/
|
|
31
31
|
readonly stdin?: string;
|
|
32
32
|
/**
|
|
33
33
|
* The directory path where the command should be executed, either an absolute path or relative to the Terraform working directory. If not provided, defaults to the Terraform working directory.
|
|
34
34
|
*
|
|
35
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
35
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#working_directory DataLocalCommand#working_directory}
|
|
36
36
|
*/
|
|
37
37
|
readonly workingDirectory?: string;
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
|
-
* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
40
|
+
* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command local_command}
|
|
41
41
|
*/
|
|
42
42
|
export declare class DataLocalCommand extends cdktn.TerraformDataSource {
|
|
43
43
|
static readonly tfResourceType = "local_command";
|
|
@@ -45,12 +45,12 @@ export declare class DataLocalCommand extends cdktn.TerraformDataSource {
|
|
|
45
45
|
* Generates CDKTN code for importing a DataLocalCommand resource upon running "cdktn plan <stack-name>"
|
|
46
46
|
* @param scope The scope in which to define this construct
|
|
47
47
|
* @param importToId The construct id used in the generated config for the DataLocalCommand to import
|
|
48
|
-
* @param importFromId The id of the existing DataLocalCommand that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
48
|
+
* @param importFromId The id of the existing DataLocalCommand that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command#import import section} in the documentation of this resource for the id to use
|
|
49
49
|
* @param provider? Optional instance of the provider where the DataLocalCommand to import is found
|
|
50
50
|
*/
|
|
51
51
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktn.TerraformProvider): cdktn.ImportableResource;
|
|
52
52
|
/**
|
|
53
|
-
* Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.
|
|
53
|
+
* Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.8.0/docs/data-sources/command local_command} Data Source
|
|
54
54
|
*
|
|
55
55
|
* @param scope The scope in which to define this construct
|
|
56
56
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|