generated from nhs-england-tools/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: DTOSS-4810 Function App environment variables
- Loading branch information
1 parent
f90b67d
commit 1218f8d
Showing
15 changed files
with
866 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
application = "commgt" | ||
application_full_name = "communication-management" | ||
environment = "DEV" | ||
location = "uksouth" | ||
|
||
features = { | ||
private_endpoints_enabled = true | ||
private_service_connection_is_manual = false | ||
public_network_access_enabled = false | ||
} | ||
|
||
tags = { | ||
Project = "Communication-Management" | ||
} | ||
|
||
resource_groups_audit = { | ||
audit = { | ||
name = "rg-commgt-dev-uks-audit" | ||
location = "uksouth" | ||
} | ||
} | ||
|
||
regions = { | ||
uksouth = { | ||
is_primary_region = true | ||
address_space = "10.108.0.0/16" | ||
connect_peering = true | ||
subnets = { | ||
pep = { | ||
cidr_newbits = 8 | ||
cidr_offset = 1 | ||
} | ||
} | ||
} | ||
} | ||
|
||
routes = { | ||
uksouth = { | ||
application_rules = [] | ||
nat_rules = [] | ||
network_rules = [ | ||
{ | ||
name = "AllowAuditToCommgt" | ||
priority = 800 | ||
action = "Allow" | ||
rule_name = "AuditToCommgt" | ||
source_addresses = ["10.108.0.0/16"] # will be populated with the communications management subnet address space | ||
destination_addresses = ["10.107.0.0/16"] # will be populated with the audit subnet address space | ||
protocols = ["TCP", "UDP"] | ||
destination_ports = ["443"] | ||
} | ||
] | ||
route_table_routes = [ | ||
{ | ||
name = "AuditToComgt" | ||
address_prefix = "10.108.0.0/16" # will be populated with the communications management subnet address space | ||
next_hop_type = "VirtualAppliance" | ||
next_hop_in_ip_address = "10.100.48.4" # will be populated with the Firewall Private IP address | ||
} | ||
] | ||
} | ||
} | ||
|
||
app_insights = { | ||
resource_group_key = "audit" | ||
appinsights_type = "web" | ||
|
||
audit_resource_group_key = "audit" | ||
} | ||
|
||
law = { | ||
resource_group_key = "audit" | ||
|
||
law_sku = "PerGB2018" | ||
retention_days = 30 | ||
|
||
audit_resource_group_key = "audit" | ||
} |
Oops, something went wrong.