Add service endpoints when creation (#56561)

pull/55973/head
Yuwei Zhou 5 years ago committed by ansibot
parent 708bda06aa
commit b2622f6c0f

@ -313,6 +313,8 @@ class AzureRMSubnet(AzureRMModuleBase):
subnet.network_security_group = self.network_models.NetworkSecurityGroup(id=nsg.get('id'))
if self.route_table:
subnet.route_table = self.network_models.RouteTable(id=self.route_table)
if self.service_endpoints:
subnet.service_endpoints = self.service_endpoints
else:
# update subnet
self.log('Updating subnet {0}'.format(self.name))

Loading…
Cancel
Save