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 unused SHM data component #1860

Merged
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
14 changes: 0 additions & 14 deletions data_safe_haven/infrastructure/programs/declarative_shm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from data_safe_haven.config import Config
from data_safe_haven.context import Context

from .shm.data import SHMDataComponent, SHMDataProps
from .shm.firewall import SHMFirewallComponent, SHMFirewallProps
from .shm.monitoring import SHMMonitoringComponent, SHMMonitoringProps
from .shm.networking import SHMNetworkingComponent, SHMNetworkingProps
Expand Down Expand Up @@ -55,19 +54,6 @@ def __call__(self) -> None:
tags=self.tags,
)

# Deploy data storage
SHMDataComponent(
"shm_data",
self.stack_name,
SHMDataProps(
admin_group_id=self.context.admin_group_id,
admin_ip_addresses=self.cfg.shm.admin_ip_addresses,
location=self.context.location,
tenant_id=self.cfg.azure.tenant_id,
),
tags=self.tags,
)

# Deploy automated monitoring
monitoring = SHMMonitoringComponent(
"shm_monitoring",
Expand Down
183 changes: 0 additions & 183 deletions data_safe_haven/infrastructure/programs/shm/data.py

This file was deleted.