Skip to content

Commit

Permalink
Add a new spring variable that will override using the spring user.ho…
Browse files Browse the repository at this point in the history
…me variable since it is not set in k8s
  • Loading branch information
gregmeldrum committed Jun 27, 2024
1 parent 2ebd005 commit 75ba1d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
COMMAND_PATH=${user.home}${file.separator}commands
COMMAND_PATH=${app.commandroot:-${user.home}}${file.separator}commands
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
@Service
@Data
public class TerraformProperties {
@Value("${COMMAND_PATH:${user.home}${file.separator}tfcommands}")
@Value("${app.commandroot:${user.home}}${file.separator}tfcommands")
private String workingDirectoryRoot;
}

0 comments on commit 75ba1d3

Please sign in to comment.