Skip to content

Commit c1ea579

Browse files
committed
terraform/datacrunch: use home-relative path for ssh_config_name
The default value for ssh_config_name uses a relative path that gets evaluated against the working directory, causing inconsistent behavior when terraform is executed from different locations. Change the default to use the home-relative path pattern already established in the rcloud module. Generated-by: Claude AI Signed-off-by: Chuck Lever <[email protected]>
1 parent e12dad9 commit c1ea579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform/datacrunch/vars.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ variable "datacrunch_ssh_key_id" {
3636
variable "ssh_config_name" {
3737
description = "The name of your ssh_config file"
3838
type = string
39-
default = "../.ssh/config"
39+
default = "~/.ssh/config"
4040
}
4141

4242
variable "ssh_config_use" {

0 commit comments

Comments
 (0)