1. Packages
  2. Azure Native v2
  3. API Docs
  4. dbformariadb
  5. VirtualNetworkRule
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.dbformariadb.VirtualNetworkRule

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

A virtual network rule. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.

Other available API versions: 2018-06-01-preview.

Example Usage

Create or update a virtual network rule

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var virtualNetworkRule = new AzureNative.DBforMariaDB.VirtualNetworkRule("virtualNetworkRule", new()
    {
        IgnoreMissingVnetServiceEndpoint = false,
        ResourceGroupName = "TestGroup",
        ServerName = "vnet-test-svr",
        VirtualNetworkRuleName = "vnet-firewall-rule",
        VirtualNetworkSubnetId = "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet",
    });

});
Copy
package main

import (
	dbformariadb "github.com/pulumi/pulumi-azure-native-sdk/dbformariadb/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dbformariadb.NewVirtualNetworkRule(ctx, "virtualNetworkRule", &dbformariadb.VirtualNetworkRuleArgs{
			IgnoreMissingVnetServiceEndpoint: pulumi.Bool(false),
			ResourceGroupName:                pulumi.String("TestGroup"),
			ServerName:                       pulumi.String("vnet-test-svr"),
			VirtualNetworkRuleName:           pulumi.String("vnet-firewall-rule"),
			VirtualNetworkSubnetId:           pulumi.String("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dbformariadb.VirtualNetworkRule;
import com.pulumi.azurenative.dbformariadb.VirtualNetworkRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var virtualNetworkRule = new VirtualNetworkRule("virtualNetworkRule", VirtualNetworkRuleArgs.builder()
            .ignoreMissingVnetServiceEndpoint(false)
            .resourceGroupName("TestGroup")
            .serverName("vnet-test-svr")
            .virtualNetworkRuleName("vnet-firewall-rule")
            .virtualNetworkSubnetId("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const virtualNetworkRule = new azure_native.dbformariadb.VirtualNetworkRule("virtualNetworkRule", {
    ignoreMissingVnetServiceEndpoint: false,
    resourceGroupName: "TestGroup",
    serverName: "vnet-test-svr",
    virtualNetworkRuleName: "vnet-firewall-rule",
    virtualNetworkSubnetId: "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

virtual_network_rule = azure_native.dbformariadb.VirtualNetworkRule("virtualNetworkRule",
    ignore_missing_vnet_service_endpoint=False,
    resource_group_name="TestGroup",
    server_name="vnet-test-svr",
    virtual_network_rule_name="vnet-firewall-rule",
    virtual_network_subnet_id="/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet")
Copy
resources:
  virtualNetworkRule:
    type: azure-native:dbformariadb:VirtualNetworkRule
    properties:
      ignoreMissingVnetServiceEndpoint: false
      resourceGroupName: TestGroup
      serverName: vnet-test-svr
      virtualNetworkRuleName: vnet-firewall-rule
      virtualNetworkSubnetId: /subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet
Copy

Create VirtualNetworkRule Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VirtualNetworkRule(name: string, args: VirtualNetworkRuleArgs, opts?: CustomResourceOptions);
@overload
def VirtualNetworkRule(resource_name: str,
                       args: VirtualNetworkRuleArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def VirtualNetworkRule(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       resource_group_name: Optional[str] = None,
                       server_name: Optional[str] = None,
                       virtual_network_subnet_id: Optional[str] = None,
                       ignore_missing_vnet_service_endpoint: Optional[bool] = None,
                       virtual_network_rule_name: Optional[str] = None)
func NewVirtualNetworkRule(ctx *Context, name string, args VirtualNetworkRuleArgs, opts ...ResourceOption) (*VirtualNetworkRule, error)
public VirtualNetworkRule(string name, VirtualNetworkRuleArgs args, CustomResourceOptions? opts = null)
public VirtualNetworkRule(String name, VirtualNetworkRuleArgs args)
public VirtualNetworkRule(String name, VirtualNetworkRuleArgs args, CustomResourceOptions options)
type: azure-native:dbformariadb:VirtualNetworkRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VirtualNetworkRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VirtualNetworkRuleArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualNetworkRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualNetworkRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VirtualNetworkRuleArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var azure_nativeVirtualNetworkRuleResource = new AzureNative.Dbformariadb.VirtualNetworkRule("azure-nativeVirtualNetworkRuleResource", new()
{
    ResourceGroupName = "string",
    ServerName = "string",
    VirtualNetworkSubnetId = "string",
    IgnoreMissingVnetServiceEndpoint = false,
    VirtualNetworkRuleName = "string",
});
Copy
example, err := dbformariadb.NewVirtualNetworkRule(ctx, "azure-nativeVirtualNetworkRuleResource", &dbformariadb.VirtualNetworkRuleArgs{
	ResourceGroupName:                "string",
	ServerName:                       "string",
	VirtualNetworkSubnetId:           "string",
	IgnoreMissingVnetServiceEndpoint: false,
	VirtualNetworkRuleName:           "string",
})
Copy
var azure_nativeVirtualNetworkRuleResource = new VirtualNetworkRule("azure-nativeVirtualNetworkRuleResource", VirtualNetworkRuleArgs.builder()
    .resourceGroupName("string")
    .serverName("string")
    .virtualNetworkSubnetId("string")
    .ignoreMissingVnetServiceEndpoint(false)
    .virtualNetworkRuleName("string")
    .build());
Copy
azure_native_virtual_network_rule_resource = azure_native.dbformariadb.VirtualNetworkRule("azure-nativeVirtualNetworkRuleResource",
    resource_group_name=string,
    server_name=string,
    virtual_network_subnet_id=string,
    ignore_missing_vnet_service_endpoint=False,
    virtual_network_rule_name=string)
Copy
const azure_nativeVirtualNetworkRuleResource = new azure_native.dbformariadb.VirtualNetworkRule("azure-nativeVirtualNetworkRuleResource", {
    resourceGroupName: "string",
    serverName: "string",
    virtualNetworkSubnetId: "string",
    ignoreMissingVnetServiceEndpoint: false,
    virtualNetworkRuleName: "string",
});
Copy
type: azure-native:dbformariadb:VirtualNetworkRule
properties:
    ignoreMissingVnetServiceEndpoint: false
    resourceGroupName: string
    serverName: string
    virtualNetworkRuleName: string
    virtualNetworkSubnetId: string
Copy

VirtualNetworkRule Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VirtualNetworkRule resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServerName
This property is required.
Changes to this property will trigger replacement.
string
The name of the server.
VirtualNetworkSubnetId This property is required. string
The ARM resource id of the virtual network subnet.
IgnoreMissingVnetServiceEndpoint bool
Create firewall rule before the virtual network has vnet service endpoint enabled.
VirtualNetworkRuleName Changes to this property will trigger replacement. string
The name of the virtual network rule.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServerName
This property is required.
Changes to this property will trigger replacement.
string
The name of the server.
VirtualNetworkSubnetId This property is required. string
The ARM resource id of the virtual network subnet.
IgnoreMissingVnetServiceEndpoint bool
Create firewall rule before the virtual network has vnet service endpoint enabled.
VirtualNetworkRuleName Changes to this property will trigger replacement. string
The name of the virtual network rule.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serverName
This property is required.
Changes to this property will trigger replacement.
String
The name of the server.
virtualNetworkSubnetId This property is required. String
The ARM resource id of the virtual network subnet.
ignoreMissingVnetServiceEndpoint Boolean
Create firewall rule before the virtual network has vnet service endpoint enabled.
virtualNetworkRuleName Changes to this property will trigger replacement. String
The name of the virtual network rule.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
serverName
This property is required.
Changes to this property will trigger replacement.
string
The name of the server.
virtualNetworkSubnetId This property is required. string
The ARM resource id of the virtual network subnet.
ignoreMissingVnetServiceEndpoint boolean
Create firewall rule before the virtual network has vnet service endpoint enabled.
virtualNetworkRuleName Changes to this property will trigger replacement. string
The name of the virtual network rule.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
server_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the server.
virtual_network_subnet_id This property is required. str
The ARM resource id of the virtual network subnet.
ignore_missing_vnet_service_endpoint bool
Create firewall rule before the virtual network has vnet service endpoint enabled.
virtual_network_rule_name Changes to this property will trigger replacement. str
The name of the virtual network rule.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serverName
This property is required.
Changes to this property will trigger replacement.
String
The name of the server.
virtualNetworkSubnetId This property is required. String
The ARM resource id of the virtual network subnet.
ignoreMissingVnetServiceEndpoint Boolean
Create firewall rule before the virtual network has vnet service endpoint enabled.
virtualNetworkRuleName Changes to this property will trigger replacement. String
The name of the virtual network rule.

Outputs

All input properties are implicitly available as output properties. Additionally, the VirtualNetworkRule resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
State string
Virtual Network Rule State
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
State string
Virtual Network Rule State
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
state String
Virtual Network Rule State
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
state string
Virtual Network Rule State
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
state str
Virtual Network Rule State
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
state String
Virtual Network Rule State
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:dbformariadb:VirtualNetworkRule vnet-firewall-rule /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi