Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pichuang/azure-bridgehead
The Azure BridgeHead is an IaC project to launch a fixed Azure topology quickly for diagnostic network services.
https://github.com/pichuang/azure-bridgehead
azure diagnostics networking
Last synced: about 1 month ago
JSON representation
The Azure BridgeHead is an IaC project to launch a fixed Azure topology quickly for diagnostic network services.
- Host: GitHub
- URL: https://github.com/pichuang/azure-bridgehead
- Owner: pichuang
- Created: 2022-08-14T08:32:14.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-31T14:01:26.000Z (3 months ago)
- Last Synced: 2024-10-31T15:17:38.059Z (3 months ago)
- Topics: azure, diagnostics, networking
- Language: HCL
- Homepage:
- Size: 281 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Bridgehead
> Code 999
![BridgeHead Arch](/images/bridgehead-arch.png)
## Parameter
- Default Subscription: `bridgehead`
- Default Region: `East US`
- Default Code ID: `999`
- Default Network Address: `10.99.98.0/23`- Parameter
- Resource Group: `rg-briagehead-999`
- VNet Name: `vnet-briagehead`
- [Azure Subnet Design][2]:
- `AzureFirewallSubnet` (/26 is minimal) : 10.99.98.0/26
- `AzureFirewallManagementSubnet` (/26 is minimal) : 10.99.98.64/26
- `RouteServerSubnet` (/27 is minimal): 10.99.98.128/27
- `GatewaySubnet` (/29 is minimal, /27 is best): 10.99.98.160/27
- `AzureBastionSubnet` (/26 is best): 10.99.98.192/26
- `subnet-hub` (/24): 10.99.99.0/24
- VM
- 10.99.99.4
- repairman / Lyc0r!sRec0ilMore info in [Visual Subnet Calculator (Azure Edition)][3]
## How to use?
``` bash
terraform init
terraform plan
terraform apply -auto-approve
``````bash
terraform destroy -auto-approve
```## References
- [Azure Resource Naming][1]
[1]: https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-naming
[2]: https://www.davidc.net/sites/default/subnets/subnets.html?network=10.99.98.0&mask=23&division=11.760
[3]: https://blog.pichuang.com.tw/azure-subnets.html