Skip to content

Commit

Permalink
fix module default path logic and config
Browse files Browse the repository at this point in the history
  • Loading branch information
swaroopar committed Dec 4, 2023
1 parent bae68eb commit d0533a2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ public TerraformExecutor(SystemCmd systemCmd,
this.moduleParentDirectoryPath =
System.getProperty("java.io.tmpdir");
} else {
this.moduleParentDirectoryPath =
System.getProperty("java.io.tmpdir") + moduleParentDirectoryPath;
this.moduleParentDirectoryPath = moduleParentDirectoryPath;
}
this.systemCmd = systemCmd;
this.customTerraformBinary = customTerraformBinary;
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ [email protected]@
spring.banner.location=classpath:banner.txt
http.logging.enabled=true
http.logging.exclude.uri=/v3/**,/swagger-ui/**,/favicon.ico,/h2-console/**
terraform.root.module.directory=xpanse_deploy_ws
log.terraform.stdout.stderr=false
terraform.binary.location=
terraform.log.level=INFO

0 comments on commit d0533a2

Please sign in to comment.