Skip to content

Commit

Permalink
Use default dir
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-fsn committed Sep 12, 2024
1 parent 97c29ff commit 1e3743f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sparecores-runner"
version = "0.0.26"
version = "0.0.27"
requires-python = ">= 3.9"
dependencies = [
"click",
Expand Down
2 changes: 1 addition & 1 deletion src/sc_runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def pulumi_stack(
pulumi_program: Callable,
project_name: Annotated[str, DefaultOpt(["--project-name"], type=str, help="Pulumi project name")] = os.environ.get("PULUMI_PROJECT_NAME", "runner"),
work_dir: Annotated[str, DefaultOpt(["--work-dir"], type=str, help="Pulumi work dir")] = os.environ.get("PULUMI_WORK_DIR", "/data/workdir"),
pulumi_home: Annotated[str, DefaultOpt(["--pulumi-home"], type=str, help="Pulumi home")] = os.environ.get("PULUMI_HOME", "/data/.pulumi"),
pulumi_home: Annotated[str, DefaultOpt(["--pulumi-home"], type=str, help="Pulumi home")] = os.environ.get("PULUMI_HOME", "/root/.pulumi"),
pulumi_backend_url: Annotated[str, DefaultOpt(["--pulumi-backend-url"], type=str, help="Pulumi backend URL")] = os.environ.get("PULUMI_BACKEND_URL", "file:///data/backend"),
stack_name: Annotated[
str,
Expand Down

0 comments on commit 1e3743f

Please sign in to comment.