Skip to main content

interfaces_effective_network_security_groups

Creates, updates, deletes, gets or lists a interfaces_effective_network_security_groups resource.

Overview

Nameinterfaces_effective_network_security_groups
TypeResource
Idazure.network.interfaces_effective_network_security_groups

Fields

NameDatatypeDescription
associationobjectThe effective network security group association.
effectiveSecurityRulesarrayA collection of effective security rules.
networkSecurityGroupobjectReference to another subresource.
tagMapstringMapping of tags to list of IP Addresses included within the tag.

Methods

NameAccessible byRequired ParamsDescription
listSELECTnetworkInterfaceName, resourceGroupName, subscriptionIdGets all network security groups applied to a network interface.

SELECT examples

Gets all network security groups applied to a network interface.

SELECT
association,
effectiveSecurityRules,
networkSecurityGroup,
tagMap
FROM azure.network.interfaces_effective_network_security_groups
WHERE networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';