Skip to content

Commit

Permalink
add custom requestId header option to terraform-boot
Browse files Browse the repository at this point in the history
  • Loading branch information
WangLiNaruto committed Nov 28, 2023
1 parent f08af3c commit fa213f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ public TerraformExecutor(SystemCmd systemCmd,
this.moduleParentDirectoryPath =
System.getProperty("java.io.tmpdir");
} else {
this.moduleParentDirectoryPath = moduleParentDirectoryPath;
this.moduleParentDirectoryPath =
System.getProperty("java.io.tmpdir") + moduleParentDirectoryPath;
}
this.systemCmd = systemCmd;
this.customTerraformBinary = customTerraformBinary;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ [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=
terraform.root.module.directory=xpanse_deploy_ws
log.terraform.stdout.stderr=false
terraform.binary.location=
terraform.log.level=INFO

0 comments on commit fa213f5

Please sign in to comment.