We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ce49c7 commit ae78276Copy full SHA for ae78276
2 files changed
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## [Unreleased]
4
5
+### Changed
6
+
7
+- Remove SOPS_AGE_KEY_FILE from default environment variables.
8
9
## [1.3.0] - 2025-10-21
10
11
### Added
src/main/kotlin/com/github/blarc/sops/intellij/plugin/settings/AppSettings.kt
@@ -26,9 +26,7 @@ class AppSettings : PersistentStateComponent<AppSettings> {
26
var requestSupport = true
27
var lastVersion: String? = null
28
var sopsPath: String? = null
29
- var sopsEnvironment: Map<String, String> = mapOf(
30
- Pair("SOPS_AGE_KEY_FILE", "~/.config/sops/age/keys.txt")
31
- )
+ var sopsEnvironment: Map<String, String> = mapOf()
32
var sopsEncryptOnChange = false
33
34
override fun getState(): AppSettings {
0 commit comments