Skip to content

Commit

Permalink
🔧 Update to new context settings structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jemrobinson committed May 2, 2024
1 parent 357dc8d commit ca3356a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions data_safe_haven/infrastructure/stacks/declarative_sre.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,14 @@ def run(self) -> None:
containers_subnet=networking.subnet_apt_proxy_server,
dns_resource_group_name=dns.resource_group.name,
dns_server_ip=dns.ip_address,
location=self.cfg.azure.location,
location=self.context.location,
networking_resource_group_name=networking.resource_group.name,
sre_fqdn=networking.sre_fqdn,
storage_account_key=data.storage_account_data_configuration_key,
storage_account_name=data.storage_account_data_configuration_name,
storage_account_resource_group_name=data.resource_group_name,
),
tags=self.cfg.tags,
tags=self.tags,
)

# Deploy identity server
Expand All @@ -250,6 +250,7 @@ def run(self) -> None:
storage_account_resource_group_name=data.resource_group_name,
subnet_containers=networking.subnet_identity_containers,
),
tags=self.tags,
)

# Deploy frontend application gateway
Expand Down

0 comments on commit ca3356a

Please sign in to comment.