Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Pulumi/dsh Python mismatch #2240

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions data_safe_haven/external/interface/pulumi_account.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Manage Pulumi accounts"""

import sys
from shutil import which
from typing import Any

Expand Down Expand Up @@ -39,5 +40,6 @@ def env(self) -> dict[str, Any]:
"AZURE_STORAGE_ACCOUNT": self.storage_account_name,
"AZURE_STORAGE_KEY": str(storage_account_keys[0].value),
"AZURE_KEYVAULT_AUTH_VIA_CLI": "true",
"PULUMI_PYTHON_CMD": sys.executable,
}
return self._env
Loading