Conversation
…viders Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
There was a problem hiding this comment.
Benchmark
Details
| Benchmark suite | Current: b461d86 | Previous: 75f3d27 | Ratio |
|---|---|---|---|
tests/benchmarks/test_placeholder.py::test_import_time |
7454.4991992532505 iter/sec (stddev: 0.000009200307612621936) |
9439.317642212467 iter/sec (stddev: 0.000016589072149731227) |
1.27 |
This comment was automatically generated by workflow using github-action-benchmark.
There was a problem hiding this comment.
⚠️ Performance Alert ⚠️
Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.10.
| Benchmark suite | Current: b461d86 | Previous: 75f3d27 | Ratio |
|---|---|---|---|
tests/benchmarks/test_placeholder.py::test_import_time |
7454.4991992532505 iter/sec (stddev: 0.000009200307612621936) |
9439.317642212467 iter/sec (stddev: 0.000016589072149731227) |
1.27 |
This comment was automatically generated by workflow using github-action-benchmark.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Retire the environment-variable credential path for Proxmox and OPNsense providers. Both providers now receive credentials exclusively through SOPS-decrypted
.tfvarsfiles, eliminating the redundantCredentialLoader->os.environ->TF_VAR_*pipeline that was a legacy holdover.Addresses #554
Type of Change
Changes Made
proxmox_loader.pyandopnsense_loader.pycredential loaders_CREDENTIAL_ENV_MAPPINGandos.environlookup fromProxmoxProvider.get_terraform_env_vars()andOPNsenseProvider.get_terraform_env_vars()CredentialLoader.PROVIDER_LOADERSregistrycredential_loader/__init__.pyexportsvariables.tf.j2descriptions (removed stale env-var references)credential-loader-system.md,ci-cd-deployment.md,ci-cd-with-separate-config-repo.md,ENV_EXAMPLE.md,ENVRC_LOCAL.md,direnv.mdTesting
doit checkpasses)test_credential_loader.pyandtest_cli_credentials.pyto remove references to deleted loadersChecklist
doit format)doit lint)doit type_check)doit test)Additional Notes
This is a breaking change for anyone relying on
PROXMOX_API_URL,PROXMOX_API_TOKEN_ID,PROXMOX_API_TOKEN_SECRET,OPNSENSE_API_URL,OPNSENSE_API_KEY, orOPNSENSE_API_SECRETenvironment variables to pass credentials. The.tfvars-based path (via SOPS secrets) is now the only supported mechanism.