Skip to content

Deploys an Azure virtual network with standardised NSGs and ASGs.

License

Notifications You must be signed in to change notification settings

skaylink/terraform-azurerm-skaylink-vnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skaylink Terraform module; virtual network

Example of vnet_subnet_range

vnet_subnet_range = {
  # Subnet without service_delegation
  "backend-subnet" = {
    "ip_range"                                      = "10.10.10.0/24"
    "attach_nsg"                                    = true
    "attach_route_table"                            = false
    "service_endpoints"                             = []
    "private_endpoint_network_policies_enabled"     = true
    "private_link_service_network_policies_enabled" = true
    "service_delegation"                            = null
    "service_delegation_actions"                    = []
  }
  # Subnet with service_delegation
  "databricks-host-subnet" = {
    "ip_range"                                      = "10.10.11.0/24"
    "attach_nsg"                                    = true
    "attach_route_table"                            = false
    "service_endpoints"                             = ["Microsoft.Storage", "Microsoft.Sql", "Microsoft.KeyVault"]
    "private_endpoint_network_policies_enabled"     = true
    "private_link_service_network_policies_enabled" = true
    "service_delegation"                            = "Microsoft.Databricks/workspaces",
    "service_delegation_actions"                    = ["Microsoft.Network/virtualNetworks/subnets/join/action", "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action", "Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action", ]
  }
}

Bastion

If you populate bastion_subnet_range a Bastion host will be deployed in the VNET resource group.

About

Deploys an Azure virtual network with standardised NSGs and ASGs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages