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

Add log messages for SRE deployment #2204

Merged
merged 1 commit into from
Sep 26, 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
4 changes: 4 additions & 0 deletions data_safe_haven/commands/sre.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def deploy(
sre_config.azure.subscription_id,
replace=False,
)
logger.info(
f"SRE will be deployed to subscription '[green]{sre_config.azure.subscription_id}[/]'"
)
stack.add_option(
"azure-native:tenantId", sre_config.azure.tenant_id, replace=False
)
Expand All @@ -96,6 +99,7 @@ def deploy(
shm_config.shm.fqdn,
replace=True,
)
logger.info(f"SRE will be registered in shm '[green]{shm_config.shm.fqdn}[/]'")

# Deploy Azure infrastructure with Pulumi
try:
Expand Down
Loading