We recommend using Azure Native.
azure.network.VnpGatewayNatRule
Explore with Pulumi AI
Manages a VPN Gateway NAT Rule.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleVirtualWan = new azure.network.VirtualWan("example", {
    name: "example-vwan",
    resourceGroupName: example.name,
    location: example.location,
});
const exampleVirtualHub = new azure.network.VirtualHub("example", {
    name: "example-vhub",
    resourceGroupName: example.name,
    location: example.location,
    addressPrefix: "10.0.1.0/24",
    virtualWanId: exampleVirtualWan.id,
});
const exampleVpnGateway = new azure.network.VpnGateway("example", {
    name: "example-vpngateway",
    location: example.location,
    resourceGroupName: example.name,
    virtualHubId: exampleVirtualHub.id,
});
const exampleVnpGatewayNatRule = new azure.network.VnpGatewayNatRule("example", {
    name: "example-vpngatewaynatrule",
    vpnGatewayId: exampleVpnGateway.id,
    externalMappings: [{
        addressSpace: "192.168.21.0/26",
    }],
    internalMappings: [{
        addressSpace: "10.4.0.0/26",
    }],
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_virtual_wan = azure.network.VirtualWan("example",
    name="example-vwan",
    resource_group_name=example.name,
    location=example.location)
example_virtual_hub = azure.network.VirtualHub("example",
    name="example-vhub",
    resource_group_name=example.name,
    location=example.location,
    address_prefix="10.0.1.0/24",
    virtual_wan_id=example_virtual_wan.id)
example_vpn_gateway = azure.network.VpnGateway("example",
    name="example-vpngateway",
    location=example.location,
    resource_group_name=example.name,
    virtual_hub_id=example_virtual_hub.id)
example_vnp_gateway_nat_rule = azure.network.VnpGatewayNatRule("example",
    name="example-vpngatewaynatrule",
    vpn_gateway_id=example_vpn_gateway.id,
    external_mappings=[{
        "address_space": "192.168.21.0/26",
    }],
    internal_mappings=[{
        "address_space": "10.4.0.0/26",
    }])
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleVirtualWan, err := network.NewVirtualWan(ctx, "example", &network.VirtualWanArgs{
			Name:              pulumi.String("example-vwan"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
		})
		if err != nil {
			return err
		}
		exampleVirtualHub, err := network.NewVirtualHub(ctx, "example", &network.VirtualHubArgs{
			Name:              pulumi.String("example-vhub"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			AddressPrefix:     pulumi.String("10.0.1.0/24"),
			VirtualWanId:      exampleVirtualWan.ID(),
		})
		if err != nil {
			return err
		}
		exampleVpnGateway, err := network.NewVpnGateway(ctx, "example", &network.VpnGatewayArgs{
			Name:              pulumi.String("example-vpngateway"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			VirtualHubId:      exampleVirtualHub.ID(),
		})
		if err != nil {
			return err
		}
		_, err = network.NewVnpGatewayNatRule(ctx, "example", &network.VnpGatewayNatRuleArgs{
			Name:         pulumi.String("example-vpngatewaynatrule"),
			VpnGatewayId: exampleVpnGateway.ID(),
			ExternalMappings: network.VnpGatewayNatRuleExternalMappingArray{
				&network.VnpGatewayNatRuleExternalMappingArgs{
					AddressSpace: pulumi.String("192.168.21.0/26"),
				},
			},
			InternalMappings: network.VnpGatewayNatRuleInternalMappingArray{
				&network.VnpGatewayNatRuleInternalMappingArgs{
					AddressSpace: pulumi.String("10.4.0.0/26"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var exampleVirtualWan = new Azure.Network.VirtualWan("example", new()
    {
        Name = "example-vwan",
        ResourceGroupName = example.Name,
        Location = example.Location,
    });
    var exampleVirtualHub = new Azure.Network.VirtualHub("example", new()
    {
        Name = "example-vhub",
        ResourceGroupName = example.Name,
        Location = example.Location,
        AddressPrefix = "10.0.1.0/24",
        VirtualWanId = exampleVirtualWan.Id,
    });
    var exampleVpnGateway = new Azure.Network.VpnGateway("example", new()
    {
        Name = "example-vpngateway",
        Location = example.Location,
        ResourceGroupName = example.Name,
        VirtualHubId = exampleVirtualHub.Id,
    });
    var exampleVnpGatewayNatRule = new Azure.Network.VnpGatewayNatRule("example", new()
    {
        Name = "example-vpngatewaynatrule",
        VpnGatewayId = exampleVpnGateway.Id,
        ExternalMappings = new[]
        {
            new Azure.Network.Inputs.VnpGatewayNatRuleExternalMappingArgs
            {
                AddressSpace = "192.168.21.0/26",
            },
        },
        InternalMappings = new[]
        {
            new Azure.Network.Inputs.VnpGatewayNatRuleInternalMappingArgs
            {
                AddressSpace = "10.4.0.0/26",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualWan;
import com.pulumi.azure.network.VirtualWanArgs;
import com.pulumi.azure.network.VirtualHub;
import com.pulumi.azure.network.VirtualHubArgs;
import com.pulumi.azure.network.VpnGateway;
import com.pulumi.azure.network.VpnGatewayArgs;
import com.pulumi.azure.network.VnpGatewayNatRule;
import com.pulumi.azure.network.VnpGatewayNatRuleArgs;
import com.pulumi.azure.network.inputs.VnpGatewayNatRuleExternalMappingArgs;
import com.pulumi.azure.network.inputs.VnpGatewayNatRuleInternalMappingArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var exampleVirtualWan = new VirtualWan("exampleVirtualWan", VirtualWanArgs.builder()
            .name("example-vwan")
            .resourceGroupName(example.name())
            .location(example.location())
            .build());
        var exampleVirtualHub = new VirtualHub("exampleVirtualHub", VirtualHubArgs.builder()
            .name("example-vhub")
            .resourceGroupName(example.name())
            .location(example.location())
            .addressPrefix("10.0.1.0/24")
            .virtualWanId(exampleVirtualWan.id())
            .build());
        var exampleVpnGateway = new VpnGateway("exampleVpnGateway", VpnGatewayArgs.builder()
            .name("example-vpngateway")
            .location(example.location())
            .resourceGroupName(example.name())
            .virtualHubId(exampleVirtualHub.id())
            .build());
        var exampleVnpGatewayNatRule = new VnpGatewayNatRule("exampleVnpGatewayNatRule", VnpGatewayNatRuleArgs.builder()
            .name("example-vpngatewaynatrule")
            .vpnGatewayId(exampleVpnGateway.id())
            .externalMappings(VnpGatewayNatRuleExternalMappingArgs.builder()
                .addressSpace("192.168.21.0/26")
                .build())
            .internalMappings(VnpGatewayNatRuleInternalMappingArgs.builder()
                .addressSpace("10.4.0.0/26")
                .build())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleVirtualWan:
    type: azure:network:VirtualWan
    name: example
    properties:
      name: example-vwan
      resourceGroupName: ${example.name}
      location: ${example.location}
  exampleVirtualHub:
    type: azure:network:VirtualHub
    name: example
    properties:
      name: example-vhub
      resourceGroupName: ${example.name}
      location: ${example.location}
      addressPrefix: 10.0.1.0/24
      virtualWanId: ${exampleVirtualWan.id}
  exampleVpnGateway:
    type: azure:network:VpnGateway
    name: example
    properties:
      name: example-vpngateway
      location: ${example.location}
      resourceGroupName: ${example.name}
      virtualHubId: ${exampleVirtualHub.id}
  exampleVnpGatewayNatRule:
    type: azure:network:VnpGatewayNatRule
    name: example
    properties:
      name: example-vpngatewaynatrule
      vpnGatewayId: ${exampleVpnGateway.id}
      externalMappings:
        - addressSpace: 192.168.21.0/26
      internalMappings:
        - addressSpace: 10.4.0.0/26
Create VnpGatewayNatRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VnpGatewayNatRule(name: string, args: VnpGatewayNatRuleArgs, opts?: CustomResourceOptions);@overload
def VnpGatewayNatRule(resource_name: str,
                      args: VnpGatewayNatRuleArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def VnpGatewayNatRule(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      vpn_gateway_id: Optional[str] = None,
                      external_mappings: Optional[Sequence[VnpGatewayNatRuleExternalMappingArgs]] = None,
                      internal_mappings: Optional[Sequence[VnpGatewayNatRuleInternalMappingArgs]] = None,
                      ip_configuration_id: Optional[str] = None,
                      mode: Optional[str] = None,
                      name: Optional[str] = None,
                      type: Optional[str] = None)func NewVnpGatewayNatRule(ctx *Context, name string, args VnpGatewayNatRuleArgs, opts ...ResourceOption) (*VnpGatewayNatRule, error)public VnpGatewayNatRule(string name, VnpGatewayNatRuleArgs args, CustomResourceOptions? opts = null)
public VnpGatewayNatRule(String name, VnpGatewayNatRuleArgs args)
public VnpGatewayNatRule(String name, VnpGatewayNatRuleArgs args, CustomResourceOptions options)
type: azure:network:VnpGatewayNatRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VnpGatewayNatRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VnpGatewayNatRuleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VnpGatewayNatRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VnpGatewayNatRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VnpGatewayNatRuleArgs
- 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 vnpGatewayNatRuleResource = new Azure.Network.VnpGatewayNatRule("vnpGatewayNatRuleResource", new()
{
    VpnGatewayId = "string",
    ExternalMappings = new[]
    {
        new Azure.Network.Inputs.VnpGatewayNatRuleExternalMappingArgs
        {
            AddressSpace = "string",
            PortRange = "string",
        },
    },
    InternalMappings = new[]
    {
        new Azure.Network.Inputs.VnpGatewayNatRuleInternalMappingArgs
        {
            AddressSpace = "string",
            PortRange = "string",
        },
    },
    IpConfigurationId = "string",
    Mode = "string",
    Name = "string",
    Type = "string",
});
example, err := network.NewVnpGatewayNatRule(ctx, "vnpGatewayNatRuleResource", &network.VnpGatewayNatRuleArgs{
	VpnGatewayId: pulumi.String("string"),
	ExternalMappings: network.VnpGatewayNatRuleExternalMappingArray{
		&network.VnpGatewayNatRuleExternalMappingArgs{
			AddressSpace: pulumi.String("string"),
			PortRange:    pulumi.String("string"),
		},
	},
	InternalMappings: network.VnpGatewayNatRuleInternalMappingArray{
		&network.VnpGatewayNatRuleInternalMappingArgs{
			AddressSpace: pulumi.String("string"),
			PortRange:    pulumi.String("string"),
		},
	},
	IpConfigurationId: pulumi.String("string"),
	Mode:              pulumi.String("string"),
	Name:              pulumi.String("string"),
	Type:              pulumi.String("string"),
})
var vnpGatewayNatRuleResource = new VnpGatewayNatRule("vnpGatewayNatRuleResource", VnpGatewayNatRuleArgs.builder()
    .vpnGatewayId("string")
    .externalMappings(VnpGatewayNatRuleExternalMappingArgs.builder()
        .addressSpace("string")
        .portRange("string")
        .build())
    .internalMappings(VnpGatewayNatRuleInternalMappingArgs.builder()
        .addressSpace("string")
        .portRange("string")
        .build())
    .ipConfigurationId("string")
    .mode("string")
    .name("string")
    .type("string")
    .build());
vnp_gateway_nat_rule_resource = azure.network.VnpGatewayNatRule("vnpGatewayNatRuleResource",
    vpn_gateway_id="string",
    external_mappings=[{
        "address_space": "string",
        "port_range": "string",
    }],
    internal_mappings=[{
        "address_space": "string",
        "port_range": "string",
    }],
    ip_configuration_id="string",
    mode="string",
    name="string",
    type="string")
const vnpGatewayNatRuleResource = new azure.network.VnpGatewayNatRule("vnpGatewayNatRuleResource", {
    vpnGatewayId: "string",
    externalMappings: [{
        addressSpace: "string",
        portRange: "string",
    }],
    internalMappings: [{
        addressSpace: "string",
        portRange: "string",
    }],
    ipConfigurationId: "string",
    mode: "string",
    name: "string",
    type: "string",
});
type: azure:network:VnpGatewayNatRule
properties:
    externalMappings:
        - addressSpace: string
          portRange: string
    internalMappings:
        - addressSpace: string
          portRange: string
    ipConfigurationId: string
    mode: string
    name: string
    type: string
    vpnGatewayId: string
VnpGatewayNatRule 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 VnpGatewayNatRule resource accepts the following input properties:
- VpnGateway stringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- ExternalMappings List<VnpGateway Nat Rule External Mapping> 
- One of more external_mappingblocks as defined below.
- InternalMappings List<VnpGateway Nat Rule Internal Mapping> 
- One of more internal_mappingblocks as defined below.
- IpConfiguration stringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- Mode string
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- Type string
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- VpnGateway stringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- ExternalMappings []VnpGateway Nat Rule External Mapping Args 
- One of more external_mappingblocks as defined below.
- InternalMappings []VnpGateway Nat Rule Internal Mapping Args 
- One of more internal_mappingblocks as defined below.
- IpConfiguration stringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- Mode string
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- Type string
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpnGateway StringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- externalMappings List<VnpGateway Nat Rule External Mapping> 
- One of more external_mappingblocks as defined below.
- internalMappings List<VnpGateway Nat Rule Internal Mapping> 
- One of more internal_mappingblocks as defined below.
- ipConfiguration StringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode String
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name String
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type String
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpnGateway stringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- externalMappings VnpGateway Nat Rule External Mapping[] 
- One of more external_mappingblocks as defined below.
- internalMappings VnpGateway Nat Rule Internal Mapping[] 
- One of more internal_mappingblocks as defined below.
- ipConfiguration stringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode string
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name string
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type string
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpn_gateway_ strid 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- external_mappings Sequence[VnpGateway Nat Rule External Mapping Args] 
- One of more external_mappingblocks as defined below.
- internal_mappings Sequence[VnpGateway Nat Rule Internal Mapping Args] 
- One of more internal_mappingblocks as defined below.
- ip_configuration_ strid 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode str
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name str
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type str
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpnGateway StringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- externalMappings List<Property Map>
- One of more external_mappingblocks as defined below.
- internalMappings List<Property Map>
- One of more internal_mappingblocks as defined below.
- ipConfiguration StringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode String
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name String
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type String
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the VnpGatewayNatRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing VnpGatewayNatRule Resource
Get an existing VnpGatewayNatRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VnpGatewayNatRuleState, opts?: CustomResourceOptions): VnpGatewayNatRule@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        external_mappings: Optional[Sequence[VnpGatewayNatRuleExternalMappingArgs]] = None,
        internal_mappings: Optional[Sequence[VnpGatewayNatRuleInternalMappingArgs]] = None,
        ip_configuration_id: Optional[str] = None,
        mode: Optional[str] = None,
        name: Optional[str] = None,
        type: Optional[str] = None,
        vpn_gateway_id: Optional[str] = None) -> VnpGatewayNatRulefunc GetVnpGatewayNatRule(ctx *Context, name string, id IDInput, state *VnpGatewayNatRuleState, opts ...ResourceOption) (*VnpGatewayNatRule, error)public static VnpGatewayNatRule Get(string name, Input<string> id, VnpGatewayNatRuleState? state, CustomResourceOptions? opts = null)public static VnpGatewayNatRule get(String name, Output<String> id, VnpGatewayNatRuleState state, CustomResourceOptions options)resources:  _:    type: azure:network:VnpGatewayNatRule    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- ExternalMappings List<VnpGateway Nat Rule External Mapping> 
- One of more external_mappingblocks as defined below.
- InternalMappings List<VnpGateway Nat Rule Internal Mapping> 
- One of more internal_mappingblocks as defined below.
- IpConfiguration stringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- Mode string
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- Type string
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- VpnGateway stringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- ExternalMappings []VnpGateway Nat Rule External Mapping Args 
- One of more external_mappingblocks as defined below.
- InternalMappings []VnpGateway Nat Rule Internal Mapping Args 
- One of more internal_mappingblocks as defined below.
- IpConfiguration stringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- Mode string
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- Type string
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- VpnGateway stringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- externalMappings List<VnpGateway Nat Rule External Mapping> 
- One of more external_mappingblocks as defined below.
- internalMappings List<VnpGateway Nat Rule Internal Mapping> 
- One of more internal_mappingblocks as defined below.
- ipConfiguration StringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode String
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name String
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type String
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpnGateway StringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- externalMappings VnpGateway Nat Rule External Mapping[] 
- One of more external_mappingblocks as defined below.
- internalMappings VnpGateway Nat Rule Internal Mapping[] 
- One of more internal_mappingblocks as defined below.
- ipConfiguration stringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode string
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name string
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type string
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpnGateway stringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- external_mappings Sequence[VnpGateway Nat Rule External Mapping Args] 
- One of more external_mappingblocks as defined below.
- internal_mappings Sequence[VnpGateway Nat Rule Internal Mapping Args] 
- One of more internal_mappingblocks as defined below.
- ip_configuration_ strid 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode str
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name str
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type str
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpn_gateway_ strid 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
- externalMappings List<Property Map>
- One of more external_mappingblocks as defined below.
- internalMappings List<Property Map>
- One of more internal_mappingblocks as defined below.
- ipConfiguration StringId 
- The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are Instance0andInstance1.
- mode String
- The source NAT direction of the VPN NAT. Possible values are EgressSnatandIngressSnat. Defaults toEgressSnat. Changing this forces a new resource to be created.
- name String
- The name which should be used for this VPN Gateway NAT Rule. Changing this forces a new resource to be created.
- type String
- The type of the VPN Gateway NAT Rule. Possible values are DynamicandStatic. Defaults toStatic. Changing this forces a new resource to be created.
- vpnGateway StringId 
- The ID of the VPN Gateway that this VPN Gateway NAT Rule belongs to. Changing this forces a new resource to be created.
Supporting Types
VnpGatewayNatRuleExternalMapping, VnpGatewayNatRuleExternalMappingArgs            
- AddressSpace string
- The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- PortRange string
- The single port range for the VPN Gateway Nat Rule external mapping.
- AddressSpace string
- The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- PortRange string
- The single port range for the VPN Gateway Nat Rule external mapping.
- addressSpace String
- The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- portRange String
- The single port range for the VPN Gateway Nat Rule external mapping.
- addressSpace string
- The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- portRange string
- The single port range for the VPN Gateway Nat Rule external mapping.
- address_space str
- The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- port_range str
- The single port range for the VPN Gateway Nat Rule external mapping.
- addressSpace String
- The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- portRange String
- The single port range for the VPN Gateway Nat Rule external mapping.
VnpGatewayNatRuleInternalMapping, VnpGatewayNatRuleInternalMappingArgs            
- AddressSpace string
- The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- PortRange string
- The single port range for the VPN Gateway Nat Rule internal mapping.
- AddressSpace string
- The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- PortRange string
- The single port range for the VPN Gateway Nat Rule internal mapping.
- addressSpace String
- The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- portRange String
- The single port range for the VPN Gateway Nat Rule internal mapping.
- addressSpace string
- The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- portRange string
- The single port range for the VPN Gateway Nat Rule internal mapping.
- address_space str
- The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- port_range str
- The single port range for the VPN Gateway Nat Rule internal mapping.
- addressSpace String
- The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- portRange String
- The single port range for the VPN Gateway Nat Rule internal mapping.
Import
VPN Gateway NAT Rules can be imported using the resource id, e.g.
$ pulumi import azure:network/vnpGatewayNatRule:VnpGatewayNatRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Network/vpnGateways/vpnGateway1/natRules/natRule1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.