The networkVirtualAppliances/inboundSecurityRules resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Network/networkVirtualAppliances/inboundSecurityRules resource, add the following JSON to your template.
{
"type": "Microsoft.Network/networkVirtualAppliances/inboundSecurityRules",
"apiVersion": "2023-04-01",
"name": "string",
"properties": {
"rules": [
{
"destinationPortRange": "int",
"protocol": "string",
"sourceAddressPrefix": "string"
}
]
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Network/networkVirtualAppliances/inboundSecurityRules' |
apiVersion | The resource api version | '2023-04-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | The properties of the Inbound Security Rules. | InboundSecurityRuleProperties |
Name | Description | Value |
---|---|---|
rules | List of allowed rules. | InboundSecurityRules[] |
Name | Description | Value |
---|---|---|
destinationPortRange | NVA port ranges to be opened up. One needs to provide specific ports. | int |
protocol | Protocol. This should be either TCP or UDP. | 'TCP' 'UDP' |
sourceAddressPrefix | The CIDR or source IP range. Only /30, /31 and /32 Ip ranges are allowed. | string |