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

Remove Azure Automation from SHM #1911

Merged
Show file tree
Hide file tree
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: 0 additions & 2 deletions data_safe_haven/infrastructure/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
SSLCertificateProps,
)
from .wrapped import (
WrappedAutomationAccount,
WrappedLogAnalyticsWorkspace,
)

Expand All @@ -46,6 +45,5 @@
"SSLCertificateProps",
"VMComponent",
"WindowsVMComponentProps",
"WrappedAutomationAccount",
"WrappedLogAnalyticsWorkspace",
]
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from .automation_account import WrappedAutomationAccount
from .log_analytics_workspace import WrappedLogAnalyticsWorkspace

__all__ = [
"WrappedAutomationAccount",
"WrappedLogAnalyticsWorkspace",
]

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(
@property
def resource_group_name(self) -> pulumi.Output[str]:
"""
Gets the name of the resource group where this automation account is deployed.
Gets the name of the resource group where this log analytics workspace is deployed.
"""
return self.resource_group_name_

Expand Down
Loading
Loading