forked from pulumi/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspoke.py
137 lines (123 loc) · 5.35 KB
/
spoke.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
from ipaddress import ip_network
from pulumi import ComponentResource, ResourceOptions
from hub import Hub
import vdc
class SpokeProps:
def __init__(
self,
azure_bastion: bool,
hub: Hub,
resource_group_name: str,
spoke_address_space: str,
subnets: [str, str, str],
tags: [str, str],
):
self.azure_bastion = azure_bastion
self.hub = hub
self.resource_group_name = resource_group_name
self.spoke_address_space = spoke_address_space
self.subnets = subnets
self.tags = tags
class Spoke(ComponentResource):
def __init__(self, name: str, props: SpokeProps,
opts: ResourceOptions=None):
super().__init__('vdc:network:Spoke', name, {}, opts)
# set required vdc variables before calling functions
vdc.resource_group_name = props.resource_group_name
vdc.tags = props.tags
vdc.self = self
# calculate the subnets in spoke_address_space
spoke_nw = ip_network(props.spoke_address_space)
if spoke_nw.prefixlen < 24: # split evenly between subnets and hosts
sub_diff = int((spoke_nw.max_prefixlen - spoke_nw.prefixlen) / 2)
else:
sub_diff = 27 - spoke_nw.prefixlen # minimum /27 subnet
subnets = spoke_nw.subnets(prefixlen_diff=sub_diff)
next_sn = next(subnets) # first subnet reserved for special uses
first_sn = next_sn.subnets(new_prefix=27) # subdivide if possible
abs_nw = next(first_sn) # AzureBastionSubnet /27 or greater
# Azure Virtual Network to be peered to the hub
spoke = vdc.virtual_network(name, [props.spoke_address_space])
# VNet Peering from the hub to spoke
hub_spoke = vdc.vnet_peering(
stem = props.hub.stem,
virtual_network_name = props.hub.name,
peer = name,
remote_virtual_network_id = spoke.id,
allow_gateway_transit = True,
depends_on=[props.hub.er_gw, props.hub.vpn_gw], # avoid contention
)
# VNet Peering from spoke to the hub
spoke_hub = vdc.vnet_peering(
stem = name,
virtual_network_name = spoke.name,
peer = props.hub.stem,
remote_virtual_network_id = props.hub.id,
allow_forwarded_traffic = True,
use_remote_gateways = True, # requires at least one gateway
depends_on=[props.hub.er_gw, props.hub.vpn_gw],
)
# Azure Bastion subnet and host (optional)
if props.azure_bastion:
spoke_ab_sn = vdc.subnet_special(
stem = f'{name}-ab',
name = 'AzureBastionSubnet',
virtual_network_name = spoke.name,
address_prefix = str(abs_nw),
depends_on = [hub_spoke, spoke_hub], # avoid contention
)
spoke_ab = vdc.bastion_host(
stem = name,
subnet_id = spoke_ab_sn.id,
)
# Route Table only to be associated with ordinary spoke subnets
spoke_rt = vdc.route_table(
stem = f'{name}',
disable_bgp_route_propagation = True,
depends_on = [hub_spoke, spoke_hub], # avoid contention
)
# VNet Peering may not be specified as next_hop_type, so a separate
# hub address space from the firewall is necessary to allow routes
# from spokes to remain unchanged when hub subnets are added
# it is very important to ensure that there is never a route with an
# address_prefix which covers the AzureFirewallSubnet.
# partially or fully invalidate system routes to redirect traffic
for route in [
(f'dmz-{name}', props.hub.dmz_rt_name, props.spoke_address_space),
(f'gw-{name}', props.hub.gw_rt_name, props.spoke_address_space),
(f'ss-{name}', props.hub.ss_rt_name, props.spoke_address_space),
(f'{name}-dg', spoke_rt.name, '0.0.0.0/0'),
(f'{name}-dmz', spoke_rt.name, props.hub.dmz_ar),
(f'{name}-hub', spoke_rt.name, props.hub.hub_as),
]:
vdc.route_to_virtual_appliance(
stem = route[0],
route_table_name = route[1],
address_prefix = route[2],
next_hop_in_ip_address = props.hub.fw_ip,
)
# ordinary spoke subnets starting with the second subnet
for subnet in props.subnets:
next_sn = next(subnets)
spoke_sn = vdc.subnet(
stem = f'{name}-{subnet[0]}',
virtual_network_name = spoke.name,
address_prefix = str(next_sn),
depends_on = [spoke_rt], # avoid contention
)
spoke_sn_rta = vdc.subnet_route_table(
stem = f'{name}-{subnet[0]}',
route_table_id = spoke_rt.id,
subnet_id = spoke_sn.id,
)
# assign properties to spoke including from child resources
self.address_spaces = spoke.address_spaces
self.hub = props.hub.id
self.id = spoke.id # exported
self.location = spoke.location
self.name = spoke.name # exported
self.resource_group_name = props.resource_group_name
self.subnets = spoke.subnets # exported
self.stem = name
self.tags = props.tags
self.register_outputs({})