You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(terraform): aws provider upgrade to v6 (#23)
# Description
This PR updates Terraform provider lock data to include AWS provider v6
and aligns template sync ignore behavior for addon-specific local files.
Compared to main, this branch:
- Upgrades locked `hashicorp/aws` provider version in
`.terraform.lock.hcl` from `5.100.0` to `6.42.0` (including checksum
updates).
- Normalizes the locked `hashicorp/helm` constraint in
`.terraform.lock.hcl` to `>= 3.0.0`.
- Adds `migrations.tf` and `.templatesyncignore.local` to
`.templatesyncignore`.
- Adds `.templatesyncignore.local` to prevent overriding addon-specific
templated files.
- Syncs `helm_keyring` description wording in `variables-addon.tf` and
generated `README.md`.
No issue is fixed by this PR.
## Type of change
- [ ] A bug fix (PR prefix `fix`)
- [ ] A new feature (PR prefix `feat`)
- [x] A code change that neither fixes a bug nor adds a feature (PR
prefix `refactor`)
- [ ] Adding missing tests or correcting existing tests (PR prefix
`test`)
- [ ] Changes that do not affect the meaning of the code like
white-spaces, formatting, missing semi-colons, etc. (PR prefix `style`)
- [ ] Changes to our CI configuration files and scripts (PR prefix `ci`)
- [ ] Documentation only changes (PR prefix `docs`)
## How Has This Been Tested?
- Plan and apply with the updated lock file to ensure no issues with
provider versions.
@@ -113,7 +113,7 @@ See [basic example](examples/basic) for further information.
113
113
| <aname="input_helm_disable_webhooks"></a> [helm\_disable\_webhooks](#input\_helm\_disable\_webhooks)| Prevent Helm chart hooks from running. Defaults to `false`. |`bool`|
114
114
| <aname="input_helm_enabled"></a> [helm\_enabled](#input\_helm\_enabled)| Set to false to prevent installation of the module via Helm release. Defaults to `true`. |`bool`|
115
115
| <aname="input_helm_force_update"></a> [helm\_force\_update](#input\_helm\_force\_update)| Force Helm resource update through delete/recreate if needed. Defaults to `false`. |`bool`|
116
-
| <aname="input_helm_keyring"></a> [helm\_keyring](#input\_helm\_keyring)| Location of public keys used for verification. Used only if `helm_package_verify` is `true`. Used only when `helm_package_verify` is `true`. Defaults to `~/.gnupg/pubring.gpg`. |`string`|
116
+
| <aname="input_helm_keyring"></a> [helm\_keyring](#input\_helm\_keyring)| Location of public keys used for verification. Used only when `helm_package_verify` is `true`. Defaults to `~/.gnupg/pubring.gpg`. |`string`|
117
117
| <aname="input_helm_lint"></a> [helm\_lint](#input\_helm\_lint)| Run the Helm chart linter during the plan. Defaults to `false`. |`bool`|
118
118
| <aname="input_helm_package_verify"></a> [helm\_package\_verify](#input\_helm\_package\_verify)| Verify the package before installing it. Helm uses a provenance file to verify the integrity of the chart; this must be hosted alongside the chart. Defaults to `false`. |`bool`|
119
119
| <aname="input_helm_postrender"></a> [helm\_postrender](#input\_helm\_postrender)| Value block with a path to a binary file to run after Helm renders the manifest which can alter the manifest contents. Defaults to `null`. | <pre>object({<br/> binary_path = string<br/> args = optional(list(string))<br/> })</pre> |
description="Location of public keys used for verification. Used only if `helm_package_verify` is `true`. Used only when `helm_package_verify` is `true`. Defaults to `~/.gnupg/pubring.gpg`."
264
+
description="Location of public keys used for verification. Used only when `helm_package_verify` is `true`. Defaults to `~/.gnupg/pubring.gpg`."
0 commit comments