Azure Classic v5.43.0, May 6 23
Azure Classic v5.43.0, May 6 23
azure.network.VnpGatewayNatRule
Explore with Pulumi AI
Manages a VPN Gateway NAT Rule.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleVirtualWan = new Azure.Network.VirtualWan("exampleVirtualWan", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
});
var exampleVirtualHub = new Azure.Network.VirtualHub("exampleVirtualHub", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AddressPrefix = "10.0.1.0/24",
VirtualWanId = exampleVirtualWan.Id,
});
var exampleVpnGateway = new Azure.Network.VpnGateway("exampleVpnGateway", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
VirtualHubId = exampleVirtualHub.Id,
});
var exampleVnpGatewayNatRule = new Azure.Network.VnpGatewayNatRule("exampleVnpGatewayNatRule", new()
{
ResourceGroupName = exampleResourceGroup.Name,
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 main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleVirtualWan, err := network.NewVirtualWan(ctx, "exampleVirtualWan", &network.VirtualWanArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
})
if err != nil {
return err
}
exampleVirtualHub, err := network.NewVirtualHub(ctx, "exampleVirtualHub", &network.VirtualHubArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AddressPrefix: pulumi.String("10.0.1.0/24"),
VirtualWanId: exampleVirtualWan.ID(),
})
if err != nil {
return err
}
exampleVpnGateway, err := network.NewVpnGateway(ctx, "exampleVpnGateway", &network.VpnGatewayArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
VirtualHubId: exampleVirtualHub.ID(),
})
if err != nil {
return err
}
_, err = network.NewVnpGatewayNatRule(ctx, "exampleVnpGatewayNatRule", &network.VnpGatewayNatRuleArgs{
ResourceGroupName: exampleResourceGroup.Name,
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
})
}
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleVirtualWan = new VirtualWan("exampleVirtualWan", VirtualWanArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.build());
var exampleVirtualHub = new VirtualHub("exampleVirtualHub", VirtualHubArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.addressPrefix("10.0.1.0/24")
.virtualWanId(exampleVirtualWan.id())
.build());
var exampleVpnGateway = new VpnGateway("exampleVpnGateway", VpnGatewayArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.virtualHubId(exampleVirtualHub.id())
.build());
var exampleVnpGatewayNatRule = new VnpGatewayNatRule("exampleVnpGatewayNatRule", VnpGatewayNatRuleArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.vpnGatewayId(exampleVpnGateway.id())
.externalMappings(VnpGatewayNatRuleExternalMappingArgs.builder()
.addressSpace("192.168.21.0/26")
.build())
.internalMappings(VnpGatewayNatRuleInternalMappingArgs.builder()
.addressSpace("10.4.0.0/26")
.build())
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_virtual_wan = azure.network.VirtualWan("exampleVirtualWan",
resource_group_name=example_resource_group.name,
location=example_resource_group.location)
example_virtual_hub = azure.network.VirtualHub("exampleVirtualHub",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
address_prefix="10.0.1.0/24",
virtual_wan_id=example_virtual_wan.id)
example_vpn_gateway = azure.network.VpnGateway("exampleVpnGateway",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
virtual_hub_id=example_virtual_hub.id)
example_vnp_gateway_nat_rule = azure.network.VnpGatewayNatRule("exampleVnpGatewayNatRule",
resource_group_name=example_resource_group.name,
vpn_gateway_id=example_vpn_gateway.id,
external_mappings=[azure.network.VnpGatewayNatRuleExternalMappingArgs(
address_space="192.168.21.0/26",
)],
internal_mappings=[azure.network.VnpGatewayNatRuleInternalMappingArgs(
address_space="10.4.0.0/26",
)])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleVirtualWan = new azure.network.VirtualWan("exampleVirtualWan", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
});
const exampleVirtualHub = new azure.network.VirtualHub("exampleVirtualHub", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
addressPrefix: "10.0.1.0/24",
virtualWanId: exampleVirtualWan.id,
});
const exampleVpnGateway = new azure.network.VpnGateway("exampleVpnGateway", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
virtualHubId: exampleVirtualHub.id,
});
const exampleVnpGatewayNatRule = new azure.network.VnpGatewayNatRule("exampleVnpGatewayNatRule", {
resourceGroupName: exampleResourceGroup.name,
vpnGatewayId: exampleVpnGateway.id,
externalMappings: [{
addressSpace: "192.168.21.0/26",
}],
internalMappings: [{
addressSpace: "10.4.0.0/26",
}],
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleVirtualWan:
type: azure:network:VirtualWan
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
exampleVirtualHub:
type: azure:network:VirtualHub
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
addressPrefix: 10.0.1.0/24
virtualWanId: ${exampleVirtualWan.id}
exampleVpnGateway:
type: azure:network:VpnGateway
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
virtualHubId: ${exampleVirtualHub.id}
exampleVnpGatewayNatRule:
type: azure:network:VnpGatewayNatRule
properties:
resourceGroupName: ${exampleResourceGroup.name}
vpnGatewayId: ${exampleVpnGateway.id}
externalMappings:
- addressSpace: 192.168.21.0/26
internalMappings:
- addressSpace: 10.4.0.0/26
Create VnpGatewayNatRule Resource
new VnpGatewayNatRule(name: string, args: VnpGatewayNatRuleArgs, opts?: CustomResourceOptions);
@overload
def VnpGatewayNatRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
external_address_space_mappings: Optional[Sequence[str]] = None,
external_mappings: Optional[Sequence[VnpGatewayNatRuleExternalMappingArgs]] = None,
internal_address_space_mappings: Optional[Sequence[str]] = None,
internal_mappings: Optional[Sequence[VnpGatewayNatRuleInternalMappingArgs]] = None,
ip_configuration_id: Optional[str] = None,
mode: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
type: Optional[str] = None,
vpn_gateway_id: Optional[str] = None)
@overload
def VnpGatewayNatRule(resource_name: str,
args: VnpGatewayNatRuleArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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
The VnpGatewayNatRule resource accepts the following input properties:
- Resource
Group stringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- Vpn
Gateway 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
Address List<string>Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- External
Mappings List<VnpGateway Nat Rule External Mapping Args> One or more
external_mapping
blocks as documented below.- Internal
Address List<string>Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- Internal
Mappings List<VnpGateway Nat Rule Internal Mapping Args> One or more
internal_mapping
blocks as documented below.- Ip
Configuration stringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- Mode string
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.
- Resource
Group stringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- Vpn
Gateway 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
Address []stringSpace Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- External
Mappings []VnpGateway Nat Rule External Mapping Args One or more
external_mapping
blocks as documented below.- Internal
Address []stringSpace Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- Internal
Mappings []VnpGateway Nat Rule Internal Mapping Args One or more
internal_mapping
blocks as documented below.- Ip
Configuration stringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- Mode string
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.
- resource
Group StringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- vpn
Gateway 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
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external
Mappings List<VnpGateway Nat Rule External Mapping Args> One or more
external_mapping
blocks as documented below.- internal
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal
Mappings List<VnpGateway Nat Rule Internal Mapping Args> One or more
internal_mapping
blocks as documented below.- ip
Configuration StringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode String
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.
- resource
Group stringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- vpn
Gateway 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
Address string[]Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external
Mappings VnpGateway Nat Rule External Mapping Args[] One or more
external_mapping
blocks as documented below.- internal
Address string[]Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal
Mappings VnpGateway Nat Rule Internal Mapping Args[] One or more
internal_mapping
blocks as documented below.- ip
Configuration stringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode string
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.
- resource_
group_ strname The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. 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_
address_ Sequence[str]space_ mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external_
mappings Sequence[VnpGateway Nat Rule External Mapping Args] One or more
external_mapping
blocks as documented below.- internal_
address_ Sequence[str]space_ mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal_
mappings Sequence[VnpGateway Nat Rule Internal Mapping Args] One or more
internal_mapping
blocks as documented below.- ip_
configuration_ strid The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode str
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.
- resource
Group StringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- vpn
Gateway 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
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external
Mappings List<Property Map> One or more
external_mapping
blocks as documented below.- internal
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal
Mappings List<Property Map> One or more
internal_mapping
blocks as documented below.- ip
Configuration StringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode String
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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
Dynamic
andStatic
. 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_address_space_mappings: Optional[Sequence[str]] = None,
external_mappings: Optional[Sequence[VnpGatewayNatRuleExternalMappingArgs]] = None,
internal_address_space_mappings: Optional[Sequence[str]] = None,
internal_mappings: Optional[Sequence[VnpGatewayNatRuleInternalMappingArgs]] = None,
ip_configuration_id: Optional[str] = None,
mode: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
type: Optional[str] = None,
vpn_gateway_id: Optional[str] = None) -> VnpGatewayNatRule
func 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)
Resource lookup is not supported in YAML
- 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.
- External
Address List<string>Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- External
Mappings List<VnpGateway Nat Rule External Mapping Args> One or more
external_mapping
blocks as documented below.- Internal
Address List<string>Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- Internal
Mappings List<VnpGateway Nat Rule Internal Mapping Args> One or more
internal_mapping
blocks as documented below.- Ip
Configuration stringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- Mode string
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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.
- Resource
Group stringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- Type string
The type of the VPN Gateway NAT Rule. Possible values are
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.- Vpn
Gateway 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
Address []stringSpace Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- External
Mappings []VnpGateway Nat Rule External Mapping Args One or more
external_mapping
blocks as documented below.- Internal
Address []stringSpace Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- Internal
Mappings []VnpGateway Nat Rule Internal Mapping Args One or more
internal_mapping
blocks as documented below.- Ip
Configuration stringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- Mode string
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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.
- Resource
Group stringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- Type string
The type of the VPN Gateway NAT Rule. Possible values are
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.- Vpn
Gateway 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
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external
Mappings List<VnpGateway Nat Rule External Mapping Args> One or more
external_mapping
blocks as documented below.- internal
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal
Mappings List<VnpGateway Nat Rule Internal Mapping Args> One or more
internal_mapping
blocks as documented below.- ip
Configuration StringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode String
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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.
- resource
Group StringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- type String
The type of the VPN Gateway NAT Rule. Possible values are
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.- vpn
Gateway 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
Address string[]Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external
Mappings VnpGateway Nat Rule External Mapping Args[] One or more
external_mapping
blocks as documented below.- internal
Address string[]Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal
Mappings VnpGateway Nat Rule Internal Mapping Args[] One or more
internal_mapping
blocks as documented below.- ip
Configuration stringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode string
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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.
- resource
Group stringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- type string
The type of the VPN Gateway NAT Rule. Possible values are
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.- vpn
Gateway 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_
address_ Sequence[str]space_ mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external_
mappings Sequence[VnpGateway Nat Rule External Mapping Args] One or more
external_mapping
blocks as documented below.- internal_
address_ Sequence[str]space_ mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal_
mappings Sequence[VnpGateway Nat Rule Internal Mapping Args] One or more
internal_mapping
blocks as documented below.- ip_
configuration_ strid The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode str
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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.
- resource_
group_ strname The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- type str
The type of the VPN Gateway NAT Rule. Possible values are
Dynamic
andStatic
. 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
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
external_address_space_mappings
will be removed in favour of the propertyexternal_mapping
in version 4.0 of the AzureRM Provider.- external
Mappings List<Property Map> One or more
external_mapping
blocks as documented below.- internal
Address List<String>Space Mappings (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
internal_address_space_mappings
will be removed in favour of the propertyinternal_mapping
in version 4.0 of the AzureRM Provider.- internal
Mappings List<Property Map> One or more
internal_mapping
blocks as documented below.- ip
Configuration StringId The ID of the IP Configuration this VPN Gateway NAT Rule applies to. Possible values are
Instance0
andInstance1
.- mode String
The source NAT direction of the VPN NAT. Possible values are
EgressSnat
andIngressSnat
. 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.
- resource
Group StringName The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
- type String
The type of the VPN Gateway NAT Rule. Possible values are
Dynamic
andStatic
. Defaults toStatic
. Changing this forces a new resource to be created.- vpn
Gateway 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
- Address
Space string The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- Port
Range string The single port range for the VPN Gateway Nat Rule external mapping.
- Address
Space string The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- Port
Range string The single port range for the VPN Gateway Nat Rule external mapping.
- address
Space String The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- port
Range String The single port range for the VPN Gateway Nat Rule external mapping.
- address
Space string The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- port
Range 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.
- address
Space String The string CIDR representing the address space for the VPN Gateway Nat Rule external mapping.
- port
Range String The single port range for the VPN Gateway Nat Rule external mapping.
VnpGatewayNatRuleInternalMapping
- Address
Space string The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- Port
Range string The single port range for the VPN Gateway Nat Rule internal mapping.
- Address
Space string The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- Port
Range string The single port range for the VPN Gateway Nat Rule internal mapping.
- address
Space String The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- port
Range String The single port range for the VPN Gateway Nat Rule internal mapping.
- address
Space string The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- port
Range 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.
- address
Space String The string CIDR representing the address space for the VPN Gateway Nat Rule internal mapping.
- port
Range 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
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.