@aws/nx-plugin-mcp 1.0.2 → 1.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/bin/aws-nx-mcp.js +709 -513
- package/docs/guides/terraform-project.mdx +1 -3
- package/package.json +1 -1
|
@@ -357,9 +357,7 @@ run "plan_is_valid" {
|
|
|
357
357
|
|
|
358
358
|
Set every variable your configuration requires in the `variables` block, otherwise the run fails with "has a required variable ... with no set value".
|
|
359
359
|
|
|
360
|
-
Every target that runs `terraform init` reuses a provider cache under `.terraform/plugin-cache` in your workspace root, so providers are downloaded once rather than on every run. Each project gets its own directory there
|
|
361
|
-
|
|
362
|
-
Set `TF_PLUGIN_CACHE_DIR` in your environment to point the vended `init` script at a cache you manage yourself — a volume shared between workspaces, say. Note that the `test` target reads its path from `project.json`, so change it there too.
|
|
360
|
+
Every target that runs `terraform init` reuses a provider cache under `.terraform/plugin-cache` in your workspace root, so providers are downloaded once rather than on every run. Each project gets its own directory there. See the [Terraform documentation](https://developer.hashicorp.com/terraform/cli/config/config-file#provider-plugin-cache) for more information.
|
|
363
361
|
|
|
364
362
|
<OptionFilter when={{ type: 'application' }} description="Application-only targets: plan / apply / destroy / etc.">
|
|
365
363
|
### Application-Only Targets
|