mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Add service endpoints when creation (#56561)
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user