We recommend using Azure Native.
azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack
Explore with Pulumi AI
Manages a Palo Alto Next Generation Firewall VHub Local Rulestack.
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 examplePublicIp = new azure.network.PublicIp("example", {
name: "acceptanceTestPublicIp1",
resourceGroupName: example.name,
location: example.location,
allocationMethod: "Static",
tags: {
environment: "Production",
},
});
const exampleVirtualWan = new azure.network.VirtualWan("example", {
name: "example-virtualwan",
resourceGroupName: example.name,
location: example.location,
});
const exampleVirtualHub = new azure.network.VirtualHub("example", {
name: "example-virtualhub",
resourceGroupName: example.name,
location: example.location,
virtualWanId: exampleVirtualWan.id,
addressPrefix: "10.0.0.0/23",
tags: {
hubSaaSPreview: "true",
},
});
const exampleVirtualNetworkAppliance = new azure.paloalto.VirtualNetworkAppliance("example", {
name: "example-appliance",
virtualHubId: exampleVirtualHub.id,
});
const exampleNextGenerationFirewallVirtualHubLocalRulestack = new azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack("example", {
name: "example-ngfwvn",
resourceGroupName: example.name,
rulestackId: exampleAzurermPaloAltoLocalRulestack.id,
networkProfile: {
publicIpAddressIds: [examplePublicIp.id],
virtualHubId: exampleVirtualHub.id,
networkVirtualApplianceId: exampleVirtualNetworkAppliance.id,
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_public_ip = azure.network.PublicIp("example",
name="acceptanceTestPublicIp1",
resource_group_name=example.name,
location=example.location,
allocation_method="Static",
tags={
"environment": "Production",
})
example_virtual_wan = azure.network.VirtualWan("example",
name="example-virtualwan",
resource_group_name=example.name,
location=example.location)
example_virtual_hub = azure.network.VirtualHub("example",
name="example-virtualhub",
resource_group_name=example.name,
location=example.location,
virtual_wan_id=example_virtual_wan.id,
address_prefix="10.0.0.0/23",
tags={
"hubSaaSPreview": "true",
})
example_virtual_network_appliance = azure.paloalto.VirtualNetworkAppliance("example",
name="example-appliance",
virtual_hub_id=example_virtual_hub.id)
example_next_generation_firewall_virtual_hub_local_rulestack = azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack("example",
name="example-ngfwvn",
resource_group_name=example.name,
rulestack_id=example_azurerm_palo_alto_local_rulestack["id"],
network_profile={
"public_ip_address_ids": [example_public_ip.id],
"virtual_hub_id": example_virtual_hub.id,
"network_virtual_appliance_id": example_virtual_network_appliance.id,
})
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-azure/sdk/v6/go/azure/paloalto"
"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
}
examplePublicIp, err := network.NewPublicIp(ctx, "example", &network.PublicIpArgs{
Name: pulumi.String("acceptanceTestPublicIp1"),
ResourceGroupName: example.Name,
Location: example.Location,
AllocationMethod: pulumi.String("Static"),
Tags: pulumi.StringMap{
"environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
exampleVirtualWan, err := network.NewVirtualWan(ctx, "example", &network.VirtualWanArgs{
Name: pulumi.String("example-virtualwan"),
ResourceGroupName: example.Name,
Location: example.Location,
})
if err != nil {
return err
}
exampleVirtualHub, err := network.NewVirtualHub(ctx, "example", &network.VirtualHubArgs{
Name: pulumi.String("example-virtualhub"),
ResourceGroupName: example.Name,
Location: example.Location,
VirtualWanId: exampleVirtualWan.ID(),
AddressPrefix: pulumi.String("10.0.0.0/23"),
Tags: pulumi.StringMap{
"hubSaaSPreview": pulumi.String("true"),
},
})
if err != nil {
return err
}
exampleVirtualNetworkAppliance, err := paloalto.NewVirtualNetworkAppliance(ctx, "example", &paloalto.VirtualNetworkApplianceArgs{
Name: pulumi.String("example-appliance"),
VirtualHubId: exampleVirtualHub.ID(),
})
if err != nil {
return err
}
_, err = paloalto.NewNextGenerationFirewallVirtualHubLocalRulestack(ctx, "example", &paloalto.NextGenerationFirewallVirtualHubLocalRulestackArgs{
Name: pulumi.String("example-ngfwvn"),
ResourceGroupName: example.Name,
RulestackId: pulumi.Any(exampleAzurermPaloAltoLocalRulestack.Id),
NetworkProfile: &paloalto.NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs{
PublicIpAddressIds: pulumi.StringArray{
examplePublicIp.ID(),
},
VirtualHubId: exampleVirtualHub.ID(),
NetworkVirtualApplianceId: exampleVirtualNetworkAppliance.ID(),
},
})
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 examplePublicIp = new Azure.Network.PublicIp("example", new()
{
Name = "acceptanceTestPublicIp1",
ResourceGroupName = example.Name,
Location = example.Location,
AllocationMethod = "Static",
Tags =
{
{ "environment", "Production" },
},
});
var exampleVirtualWan = new Azure.Network.VirtualWan("example", new()
{
Name = "example-virtualwan",
ResourceGroupName = example.Name,
Location = example.Location,
});
var exampleVirtualHub = new Azure.Network.VirtualHub("example", new()
{
Name = "example-virtualhub",
ResourceGroupName = example.Name,
Location = example.Location,
VirtualWanId = exampleVirtualWan.Id,
AddressPrefix = "10.0.0.0/23",
Tags =
{
{ "hubSaaSPreview", "true" },
},
});
var exampleVirtualNetworkAppliance = new Azure.PaloAlto.VirtualNetworkAppliance("example", new()
{
Name = "example-appliance",
VirtualHubId = exampleVirtualHub.Id,
});
var exampleNextGenerationFirewallVirtualHubLocalRulestack = new Azure.PaloAlto.NextGenerationFirewallVirtualHubLocalRulestack("example", new()
{
Name = "example-ngfwvn",
ResourceGroupName = example.Name,
RulestackId = exampleAzurermPaloAltoLocalRulestack.Id,
NetworkProfile = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs
{
PublicIpAddressIds = new[]
{
examplePublicIp.Id,
},
VirtualHubId = exampleVirtualHub.Id,
NetworkVirtualApplianceId = exampleVirtualNetworkAppliance.Id,
},
});
});
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.PublicIp;
import com.pulumi.azure.network.PublicIpArgs;
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.paloalto.VirtualNetworkAppliance;
import com.pulumi.azure.paloalto.VirtualNetworkApplianceArgs;
import com.pulumi.azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack;
import com.pulumi.azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestackArgs;
import com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs;
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 examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()
.name("acceptanceTestPublicIp1")
.resourceGroupName(example.name())
.location(example.location())
.allocationMethod("Static")
.tags(Map.of("environment", "Production"))
.build());
var exampleVirtualWan = new VirtualWan("exampleVirtualWan", VirtualWanArgs.builder()
.name("example-virtualwan")
.resourceGroupName(example.name())
.location(example.location())
.build());
var exampleVirtualHub = new VirtualHub("exampleVirtualHub", VirtualHubArgs.builder()
.name("example-virtualhub")
.resourceGroupName(example.name())
.location(example.location())
.virtualWanId(exampleVirtualWan.id())
.addressPrefix("10.0.0.0/23")
.tags(Map.of("hubSaaSPreview", "true"))
.build());
var exampleVirtualNetworkAppliance = new VirtualNetworkAppliance("exampleVirtualNetworkAppliance", VirtualNetworkApplianceArgs.builder()
.name("example-appliance")
.virtualHubId(exampleVirtualHub.id())
.build());
var exampleNextGenerationFirewallVirtualHubLocalRulestack = new NextGenerationFirewallVirtualHubLocalRulestack("exampleNextGenerationFirewallVirtualHubLocalRulestack", NextGenerationFirewallVirtualHubLocalRulestackArgs.builder()
.name("example-ngfwvn")
.resourceGroupName(example.name())
.rulestackId(exampleAzurermPaloAltoLocalRulestack.id())
.networkProfile(NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs.builder()
.publicIpAddressIds(examplePublicIp.id())
.virtualHubId(exampleVirtualHub.id())
.networkVirtualApplianceId(exampleVirtualNetworkAppliance.id())
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
examplePublicIp:
type: azure:network:PublicIp
name: example
properties:
name: acceptanceTestPublicIp1
resourceGroupName: ${example.name}
location: ${example.location}
allocationMethod: Static
tags:
environment: Production
exampleVirtualWan:
type: azure:network:VirtualWan
name: example
properties:
name: example-virtualwan
resourceGroupName: ${example.name}
location: ${example.location}
exampleVirtualHub:
type: azure:network:VirtualHub
name: example
properties:
name: example-virtualhub
resourceGroupName: ${example.name}
location: ${example.location}
virtualWanId: ${exampleVirtualWan.id}
addressPrefix: 10.0.0.0/23
tags:
hubSaaSPreview: 'true'
exampleVirtualNetworkAppliance:
type: azure:paloalto:VirtualNetworkAppliance
name: example
properties:
name: example-appliance
virtualHubId: ${exampleVirtualHub.id}
exampleNextGenerationFirewallVirtualHubLocalRulestack:
type: azure:paloalto:NextGenerationFirewallVirtualHubLocalRulestack
name: example
properties:
name: example-ngfwvn
resourceGroupName: ${example.name}
rulestackId: ${exampleAzurermPaloAltoLocalRulestack.id}
networkProfile:
publicIpAddressIds:
- ${examplePublicIp.id}
virtualHubId: ${exampleVirtualHub.id}
networkVirtualApplianceId: ${exampleVirtualNetworkAppliance.id}
API Providers
This resource uses the following Azure API Providers:
PaloAltoNetworks.Cloudngfw
: 2023-09-01, 2022-08-29
Create NextGenerationFirewallVirtualHubLocalRulestack Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NextGenerationFirewallVirtualHubLocalRulestack(name: string, args: NextGenerationFirewallVirtualHubLocalRulestackArgs, opts?: CustomResourceOptions);
@overload
def NextGenerationFirewallVirtualHubLocalRulestack(resource_name: str,
args: NextGenerationFirewallVirtualHubLocalRulestackArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NextGenerationFirewallVirtualHubLocalRulestack(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_profile: Optional[NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs] = None,
resource_group_name: Optional[str] = None,
rulestack_id: Optional[str] = None,
destination_nats: Optional[Sequence[NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArgs]] = None,
dns_settings: Optional[NextGenerationFirewallVirtualHubLocalRulestackDnsSettingsArgs] = None,
marketplace_offer_id: Optional[str] = None,
name: Optional[str] = None,
plan_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewNextGenerationFirewallVirtualHubLocalRulestack(ctx *Context, name string, args NextGenerationFirewallVirtualHubLocalRulestackArgs, opts ...ResourceOption) (*NextGenerationFirewallVirtualHubLocalRulestack, error)
public NextGenerationFirewallVirtualHubLocalRulestack(string name, NextGenerationFirewallVirtualHubLocalRulestackArgs args, CustomResourceOptions? opts = null)
public NextGenerationFirewallVirtualHubLocalRulestack(String name, NextGenerationFirewallVirtualHubLocalRulestackArgs args)
public NextGenerationFirewallVirtualHubLocalRulestack(String name, NextGenerationFirewallVirtualHubLocalRulestackArgs args, CustomResourceOptions options)
type: azure:paloalto:NextGenerationFirewallVirtualHubLocalRulestack
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 NextGenerationFirewallVirtualHubLocalRulestackArgs
- 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 NextGenerationFirewallVirtualHubLocalRulestackArgs
- 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 NextGenerationFirewallVirtualHubLocalRulestackArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NextGenerationFirewallVirtualHubLocalRulestackArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NextGenerationFirewallVirtualHubLocalRulestackArgs
- 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 nextGenerationFirewallVirtualHubLocalRulestackResource = new Azure.PaloAlto.NextGenerationFirewallVirtualHubLocalRulestack("nextGenerationFirewallVirtualHubLocalRulestackResource", new()
{
NetworkProfile = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs
{
NetworkVirtualApplianceId = "string",
PublicIpAddressIds = new[]
{
"string",
},
VirtualHubId = "string",
EgressNatIpAddressIds = new[]
{
"string",
},
EgressNatIpAddresses = new[]
{
"string",
},
IpOfTrustForUserDefinedRoutes = "string",
PublicIpAddresses = new[]
{
"string",
},
TrustedAddressRanges = new[]
{
"string",
},
TrustedSubnetId = "string",
UntrustedSubnetId = "string",
},
ResourceGroupName = "string",
RulestackId = "string",
DestinationNats = new[]
{
new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArgs
{
Name = "string",
Protocol = "string",
BackendConfig = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatBackendConfigArgs
{
Port = 0,
PublicIpAddress = "string",
},
FrontendConfig = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatFrontendConfigArgs
{
Port = 0,
PublicIpAddressId = "string",
},
},
},
DnsSettings = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualHubLocalRulestackDnsSettingsArgs
{
AzureDnsServers = new[]
{
"string",
},
DnsServers = new[]
{
"string",
},
UseAzureDns = false,
},
MarketplaceOfferId = "string",
Name = "string",
PlanId = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := paloalto.NewNextGenerationFirewallVirtualHubLocalRulestack(ctx, "nextGenerationFirewallVirtualHubLocalRulestackResource", &paloalto.NextGenerationFirewallVirtualHubLocalRulestackArgs{
NetworkProfile: &paloalto.NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs{
NetworkVirtualApplianceId: pulumi.String("string"),
PublicIpAddressIds: pulumi.StringArray{
pulumi.String("string"),
},
VirtualHubId: pulumi.String("string"),
EgressNatIpAddressIds: pulumi.StringArray{
pulumi.String("string"),
},
EgressNatIpAddresses: pulumi.StringArray{
pulumi.String("string"),
},
IpOfTrustForUserDefinedRoutes: pulumi.String("string"),
PublicIpAddresses: pulumi.StringArray{
pulumi.String("string"),
},
TrustedAddressRanges: pulumi.StringArray{
pulumi.String("string"),
},
TrustedSubnetId: pulumi.String("string"),
UntrustedSubnetId: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
RulestackId: pulumi.String("string"),
DestinationNats: paloalto.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArray{
&paloalto.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArgs{
Name: pulumi.String("string"),
Protocol: pulumi.String("string"),
BackendConfig: &paloalto.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatBackendConfigArgs{
Port: pulumi.Int(0),
PublicIpAddress: pulumi.String("string"),
},
FrontendConfig: &paloalto.NextGenerationFirewallVirtualHubLocalRulestackDestinationNatFrontendConfigArgs{
Port: pulumi.Int(0),
PublicIpAddressId: pulumi.String("string"),
},
},
},
DnsSettings: &paloalto.NextGenerationFirewallVirtualHubLocalRulestackDnsSettingsArgs{
AzureDnsServers: pulumi.StringArray{
pulumi.String("string"),
},
DnsServers: pulumi.StringArray{
pulumi.String("string"),
},
UseAzureDns: pulumi.Bool(false),
},
MarketplaceOfferId: pulumi.String("string"),
Name: pulumi.String("string"),
PlanId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var nextGenerationFirewallVirtualHubLocalRulestackResource = new NextGenerationFirewallVirtualHubLocalRulestack("nextGenerationFirewallVirtualHubLocalRulestackResource", NextGenerationFirewallVirtualHubLocalRulestackArgs.builder()
.networkProfile(NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs.builder()
.networkVirtualApplianceId("string")
.publicIpAddressIds("string")
.virtualHubId("string")
.egressNatIpAddressIds("string")
.egressNatIpAddresses("string")
.ipOfTrustForUserDefinedRoutes("string")
.publicIpAddresses("string")
.trustedAddressRanges("string")
.trustedSubnetId("string")
.untrustedSubnetId("string")
.build())
.resourceGroupName("string")
.rulestackId("string")
.destinationNats(NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArgs.builder()
.name("string")
.protocol("string")
.backendConfig(NextGenerationFirewallVirtualHubLocalRulestackDestinationNatBackendConfigArgs.builder()
.port(0)
.publicIpAddress("string")
.build())
.frontendConfig(NextGenerationFirewallVirtualHubLocalRulestackDestinationNatFrontendConfigArgs.builder()
.port(0)
.publicIpAddressId("string")
.build())
.build())
.dnsSettings(NextGenerationFirewallVirtualHubLocalRulestackDnsSettingsArgs.builder()
.azureDnsServers("string")
.dnsServers("string")
.useAzureDns(false)
.build())
.marketplaceOfferId("string")
.name("string")
.planId("string")
.tags(Map.of("string", "string"))
.build());
next_generation_firewall_virtual_hub_local_rulestack_resource = azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack("nextGenerationFirewallVirtualHubLocalRulestackResource",
network_profile={
"network_virtual_appliance_id": "string",
"public_ip_address_ids": ["string"],
"virtual_hub_id": "string",
"egress_nat_ip_address_ids": ["string"],
"egress_nat_ip_addresses": ["string"],
"ip_of_trust_for_user_defined_routes": "string",
"public_ip_addresses": ["string"],
"trusted_address_ranges": ["string"],
"trusted_subnet_id": "string",
"untrusted_subnet_id": "string",
},
resource_group_name="string",
rulestack_id="string",
destination_nats=[{
"name": "string",
"protocol": "string",
"backend_config": {
"port": 0,
"public_ip_address": "string",
},
"frontend_config": {
"port": 0,
"public_ip_address_id": "string",
},
}],
dns_settings={
"azure_dns_servers": ["string"],
"dns_servers": ["string"],
"use_azure_dns": False,
},
marketplace_offer_id="string",
name="string",
plan_id="string",
tags={
"string": "string",
})
const nextGenerationFirewallVirtualHubLocalRulestackResource = new azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack("nextGenerationFirewallVirtualHubLocalRulestackResource", {
networkProfile: {
networkVirtualApplianceId: "string",
publicIpAddressIds: ["string"],
virtualHubId: "string",
egressNatIpAddressIds: ["string"],
egressNatIpAddresses: ["string"],
ipOfTrustForUserDefinedRoutes: "string",
publicIpAddresses: ["string"],
trustedAddressRanges: ["string"],
trustedSubnetId: "string",
untrustedSubnetId: "string",
},
resourceGroupName: "string",
rulestackId: "string",
destinationNats: [{
name: "string",
protocol: "string",
backendConfig: {
port: 0,
publicIpAddress: "string",
},
frontendConfig: {
port: 0,
publicIpAddressId: "string",
},
}],
dnsSettings: {
azureDnsServers: ["string"],
dnsServers: ["string"],
useAzureDns: false,
},
marketplaceOfferId: "string",
name: "string",
planId: "string",
tags: {
string: "string",
},
});
type: azure:paloalto:NextGenerationFirewallVirtualHubLocalRulestack
properties:
destinationNats:
- backendConfig:
port: 0
publicIpAddress: string
frontendConfig:
port: 0
publicIpAddressId: string
name: string
protocol: string
dnsSettings:
azureDnsServers:
- string
dnsServers:
- string
useAzureDns: false
marketplaceOfferId: string
name: string
networkProfile:
egressNatIpAddressIds:
- string
egressNatIpAddresses:
- string
ipOfTrustForUserDefinedRoutes: string
networkVirtualApplianceId: string
publicIpAddressIds:
- string
publicIpAddresses:
- string
trustedAddressRanges:
- string
trustedSubnetId: string
untrustedSubnetId: string
virtualHubId: string
planId: string
resourceGroupName: string
rulestackId: string
tags:
string: string
NextGenerationFirewallVirtualHubLocalRulestack 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 NextGenerationFirewallVirtualHubLocalRulestack resource accepts the following input properties:
- Network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile - A
network_profile
block as defined below. - Resource
Group stringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Rulestack
Id string - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- Destination
Nats List<NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat> - One or more
destination_nat
blocks as defined below. - Dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings - A
dns_settings
block as defined below. - Marketplace
Offer stringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - Name string
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Plan
Id string The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- Dictionary<string, string>
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- Network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile Args - A
network_profile
block as defined below. - Resource
Group stringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Rulestack
Id string - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- Destination
Nats []NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Args - One or more
destination_nat
blocks as defined below. - Dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings Args - A
dns_settings
block as defined below. - Marketplace
Offer stringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - Name string
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Plan
Id string The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- map[string]string
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile - A
network_profile
block as defined below. - resource
Group StringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack
Id String - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- destination
Nats List<NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat> - One or more
destination_nat
blocks as defined below. - dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings - A
dns_settings
block as defined below. - marketplace
Offer StringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name String
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- plan
Id String The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- Map<String,String>
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile - A
network_profile
block as defined below. - resource
Group stringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack
Id string - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- destination
Nats NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat[] - One or more
destination_nat
blocks as defined below. - dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings - A
dns_settings
block as defined below. - marketplace
Offer stringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name string
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- plan
Id string The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- {[key: string]: string}
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- network_
profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile Args - A
network_profile
block as defined below. - resource_
group_ strname - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack_
id str - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- destination_
nats Sequence[NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Args] - One or more
destination_nat
blocks as defined below. - dns_
settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings Args - A
dns_settings
block as defined below. - marketplace_
offer_ strid - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name str
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- plan_
id str The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- Mapping[str, str]
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- network
Profile Property Map - A
network_profile
block as defined below. - resource
Group StringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack
Id String - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- destination
Nats List<Property Map> - One or more
destination_nat
blocks as defined below. - dns
Settings Property Map - A
dns_settings
block as defined below. - marketplace
Offer StringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name String
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- plan
Id String The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- Map<String>
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
Outputs
All input properties are implicitly available as output properties. Additionally, the NextGenerationFirewallVirtualHubLocalRulestack 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 NextGenerationFirewallVirtualHubLocalRulestack Resource
Get an existing NextGenerationFirewallVirtualHubLocalRulestack 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?: NextGenerationFirewallVirtualHubLocalRulestackState, opts?: CustomResourceOptions): NextGenerationFirewallVirtualHubLocalRulestack
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
destination_nats: Optional[Sequence[NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArgs]] = None,
dns_settings: Optional[NextGenerationFirewallVirtualHubLocalRulestackDnsSettingsArgs] = None,
marketplace_offer_id: Optional[str] = None,
name: Optional[str] = None,
network_profile: Optional[NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs] = None,
plan_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
rulestack_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> NextGenerationFirewallVirtualHubLocalRulestack
func GetNextGenerationFirewallVirtualHubLocalRulestack(ctx *Context, name string, id IDInput, state *NextGenerationFirewallVirtualHubLocalRulestackState, opts ...ResourceOption) (*NextGenerationFirewallVirtualHubLocalRulestack, error)
public static NextGenerationFirewallVirtualHubLocalRulestack Get(string name, Input<string> id, NextGenerationFirewallVirtualHubLocalRulestackState? state, CustomResourceOptions? opts = null)
public static NextGenerationFirewallVirtualHubLocalRulestack get(String name, Output<String> id, NextGenerationFirewallVirtualHubLocalRulestackState state, CustomResourceOptions options)
resources: _: type: azure:paloalto:NextGenerationFirewallVirtualHubLocalRulestack 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.
- Destination
Nats List<NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat> - One or more
destination_nat
blocks as defined below. - Dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings - A
dns_settings
block as defined below. - Marketplace
Offer stringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - Name string
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile - A
network_profile
block as defined below. - Plan
Id string The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- Resource
Group stringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Rulestack
Id string - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- Destination
Nats []NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Args - One or more
destination_nat
blocks as defined below. - Dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings Args - A
dns_settings
block as defined below. - Marketplace
Offer stringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - Name string
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile Args - A
network_profile
block as defined below. - Plan
Id string The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- Resource
Group stringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Rulestack
Id string - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- map[string]string
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- destination
Nats List<NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat> - One or more
destination_nat
blocks as defined below. - dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings - A
dns_settings
block as defined below. - marketplace
Offer StringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name String
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile - A
network_profile
block as defined below. - plan
Id String The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- resource
Group StringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack
Id String - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- Map<String,String>
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- destination
Nats NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat[] - One or more
destination_nat
blocks as defined below. - dns
Settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings - A
dns_settings
block as defined below. - marketplace
Offer stringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name string
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- network
Profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile - A
network_profile
block as defined below. - plan
Id string The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- resource
Group stringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack
Id string - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- destination_
nats Sequence[NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Args] - One or more
destination_nat
blocks as defined below. - dns_
settings NextGeneration Firewall Virtual Hub Local Rulestack Dns Settings Args - A
dns_settings
block as defined below. - marketplace_
offer_ strid - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name str
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- network_
profile NextGeneration Firewall Virtual Hub Local Rulestack Network Profile Args - A
network_profile
block as defined below. - plan_
id str The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- resource_
group_ strname - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack_
id str - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
- destination
Nats List<Property Map> - One or more
destination_nat
blocks as defined below. - dns
Settings Property Map - A
dns_settings
block as defined below. - marketplace
Offer StringId - The marketplace offer ID. Defaults to
pan_swfw_cloud_ngfw
. Changing this forces a new resource to be created. - name String
- The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- network
Profile Property Map - A
network_profile
block as defined below. - plan
Id String The billing plan ID as published by Liftr.PAN. Defaults to
panw-cloud-ngfw-payg
.Note: The former
plan_id
panw-cloud-ngfw-payg
is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly setplan_id
topanw-cngfw-payg
when creating new resources.- resource
Group StringName - The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- rulestack
Id String - The ID of the Local Rulestack to be used for this Next Generation Firewall.
- Map<String>
- A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack.
Supporting Types
NextGenerationFirewallVirtualHubLocalRulestackDestinationNat, NextGenerationFirewallVirtualHubLocalRulestackDestinationNatArgs
- Name string
- The name which should be used for this NAT.
- Protocol string
- The protocol used for this Destination NAT. Possible values include
TCP
andUDP
. - Backend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Backend Config - A
backend_config
block as defined above. - Frontend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Frontend Config - A
frontend_config
block as defined below.
- Name string
- The name which should be used for this NAT.
- Protocol string
- The protocol used for this Destination NAT. Possible values include
TCP
andUDP
. - Backend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Backend Config - A
backend_config
block as defined above. - Frontend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Frontend Config - A
frontend_config
block as defined below.
- name String
- The name which should be used for this NAT.
- protocol String
- The protocol used for this Destination NAT. Possible values include
TCP
andUDP
. - backend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Backend Config - A
backend_config
block as defined above. - frontend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Frontend Config - A
frontend_config
block as defined below.
- name string
- The name which should be used for this NAT.
- protocol string
- The protocol used for this Destination NAT. Possible values include
TCP
andUDP
. - backend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Backend Config - A
backend_config
block as defined above. - frontend
Config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Frontend Config - A
frontend_config
block as defined below.
- name str
- The name which should be used for this NAT.
- protocol str
- The protocol used for this Destination NAT. Possible values include
TCP
andUDP
. - backend_
config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Backend Config - A
backend_config
block as defined above. - frontend_
config NextGeneration Firewall Virtual Hub Local Rulestack Destination Nat Frontend Config - A
frontend_config
block as defined below.
- name String
- The name which should be used for this NAT.
- protocol String
- The protocol used for this Destination NAT. Possible values include
TCP
andUDP
. - backend
Config Property Map - A
backend_config
block as defined above. - frontend
Config Property Map - A
frontend_config
block as defined below.
NextGenerationFirewallVirtualHubLocalRulestackDestinationNatBackendConfig, NextGenerationFirewallVirtualHubLocalRulestackDestinationNatBackendConfigArgs
- Port int
- The port number to send traffic to.
- Public
Ip stringAddress - The Public IP Address to send the traffic to.
- Port int
- The port number to send traffic to.
- Public
Ip stringAddress - The Public IP Address to send the traffic to.
- port Integer
- The port number to send traffic to.
- public
Ip StringAddress - The Public IP Address to send the traffic to.
- port number
- The port number to send traffic to.
- public
Ip stringAddress - The Public IP Address to send the traffic to.
- port int
- The port number to send traffic to.
- public_
ip_ straddress - The Public IP Address to send the traffic to.
- port Number
- The port number to send traffic to.
- public
Ip StringAddress - The Public IP Address to send the traffic to.
NextGenerationFirewallVirtualHubLocalRulestackDestinationNatFrontendConfig, NextGenerationFirewallVirtualHubLocalRulestackDestinationNatFrontendConfigArgs
- Port int
- The port on which traffic will be receiveed.
- Public
Ip stringAddress Id - The ID of the Public IP Address resource the traffic will be received on.
- Port int
- The port on which traffic will be receiveed.
- Public
Ip stringAddress Id - The ID of the Public IP Address resource the traffic will be received on.
- port Integer
- The port on which traffic will be receiveed.
- public
Ip StringAddress Id - The ID of the Public IP Address resource the traffic will be received on.
- port number
- The port on which traffic will be receiveed.
- public
Ip stringAddress Id - The ID of the Public IP Address resource the traffic will be received on.
- port int
- The port on which traffic will be receiveed.
- public_
ip_ straddress_ id - The ID of the Public IP Address resource the traffic will be received on.
- port Number
- The port on which traffic will be receiveed.
- public
Ip StringAddress Id - The ID of the Public IP Address resource the traffic will be received on.
NextGenerationFirewallVirtualHubLocalRulestackDnsSettings, NextGenerationFirewallVirtualHubLocalRulestackDnsSettingsArgs
- Azure
Dns List<string>Servers - Dns
Servers List<string> - Specifies a list of DNS servers to proxy. Conflicts with
dns_settings[0].use_azure_dns
. - Use
Azure boolDns - Should Azure DNS servers be used? Conflicts with
dns_settings[0].dns_servers
. Defaults tofalse
.
- Azure
Dns []stringServers - Dns
Servers []string - Specifies a list of DNS servers to proxy. Conflicts with
dns_settings[0].use_azure_dns
. - Use
Azure boolDns - Should Azure DNS servers be used? Conflicts with
dns_settings[0].dns_servers
. Defaults tofalse
.
- azure
Dns List<String>Servers - dns
Servers List<String> - Specifies a list of DNS servers to proxy. Conflicts with
dns_settings[0].use_azure_dns
. - use
Azure BooleanDns - Should Azure DNS servers be used? Conflicts with
dns_settings[0].dns_servers
. Defaults tofalse
.
- azure
Dns string[]Servers - dns
Servers string[] - Specifies a list of DNS servers to proxy. Conflicts with
dns_settings[0].use_azure_dns
. - use
Azure booleanDns - Should Azure DNS servers be used? Conflicts with
dns_settings[0].dns_servers
. Defaults tofalse
.
- azure_
dns_ Sequence[str]servers - dns_
servers Sequence[str] - Specifies a list of DNS servers to proxy. Conflicts with
dns_settings[0].use_azure_dns
. - use_
azure_ booldns - Should Azure DNS servers be used? Conflicts with
dns_settings[0].dns_servers
. Defaults tofalse
.
- azure
Dns List<String>Servers - dns
Servers List<String> - Specifies a list of DNS servers to proxy. Conflicts with
dns_settings[0].use_azure_dns
. - use
Azure BooleanDns - Should Azure DNS servers be used? Conflicts with
dns_settings[0].dns_servers
. Defaults tofalse
.
NextGenerationFirewallVirtualHubLocalRulestackNetworkProfile, NextGenerationFirewallVirtualHubLocalRulestackNetworkProfileArgs
- Network
Virtual stringAppliance Id - The ID of the Palo Alto Network Virtual Appliance in the VHub. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Public
Ip List<string>Address Ids - Specifies a list of Public IP IDs to use for this Next Generation Firewall.
- Virtual
Hub stringId - The ID of the Virtual Hub this Next generation Fireall will be deployed in. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Egress
Nat List<string>Ip Address Ids - Specifies a list of Public IP IDs to use for Egress NAT.
- Egress
Nat List<string>Ip Addresses - Ip
Of stringTrust For User Defined Routes - Public
Ip List<string>Addresses - Trusted
Address List<string>Ranges - Specifies a list of trusted ranges to use for the Network.
- Trusted
Subnet stringId - Untrusted
Subnet stringId
- Network
Virtual stringAppliance Id - The ID of the Palo Alto Network Virtual Appliance in the VHub. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Public
Ip []stringAddress Ids - Specifies a list of Public IP IDs to use for this Next Generation Firewall.
- Virtual
Hub stringId - The ID of the Virtual Hub this Next generation Fireall will be deployed in. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- Egress
Nat []stringIp Address Ids - Specifies a list of Public IP IDs to use for Egress NAT.
- Egress
Nat []stringIp Addresses - Ip
Of stringTrust For User Defined Routes - Public
Ip []stringAddresses - Trusted
Address []stringRanges - Specifies a list of trusted ranges to use for the Network.
- Trusted
Subnet stringId - Untrusted
Subnet stringId
- network
Virtual StringAppliance Id - The ID of the Palo Alto Network Virtual Appliance in the VHub. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- public
Ip List<String>Address Ids - Specifies a list of Public IP IDs to use for this Next Generation Firewall.
- virtual
Hub StringId - The ID of the Virtual Hub this Next generation Fireall will be deployed in. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- egress
Nat List<String>Ip Address Ids - Specifies a list of Public IP IDs to use for Egress NAT.
- egress
Nat List<String>Ip Addresses - ip
Of StringTrust For User Defined Routes - public
Ip List<String>Addresses - trusted
Address List<String>Ranges - Specifies a list of trusted ranges to use for the Network.
- trusted
Subnet StringId - untrusted
Subnet StringId
- network
Virtual stringAppliance Id - The ID of the Palo Alto Network Virtual Appliance in the VHub. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- public
Ip string[]Address Ids - Specifies a list of Public IP IDs to use for this Next Generation Firewall.
- virtual
Hub stringId - The ID of the Virtual Hub this Next generation Fireall will be deployed in. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- egress
Nat string[]Ip Address Ids - Specifies a list of Public IP IDs to use for Egress NAT.
- egress
Nat string[]Ip Addresses - ip
Of stringTrust For User Defined Routes - public
Ip string[]Addresses - trusted
Address string[]Ranges - Specifies a list of trusted ranges to use for the Network.
- trusted
Subnet stringId - untrusted
Subnet stringId
- network_
virtual_ strappliance_ id - The ID of the Palo Alto Network Virtual Appliance in the VHub. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- public_
ip_ Sequence[str]address_ ids - Specifies a list of Public IP IDs to use for this Next Generation Firewall.
- virtual_
hub_ strid - The ID of the Virtual Hub this Next generation Fireall will be deployed in. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- egress_
nat_ Sequence[str]ip_ address_ ids - Specifies a list of Public IP IDs to use for Egress NAT.
- egress_
nat_ Sequence[str]ip_ addresses - ip_
of_ strtrust_ for_ user_ defined_ routes - public_
ip_ Sequence[str]addresses - trusted_
address_ Sequence[str]ranges - Specifies a list of trusted ranges to use for the Network.
- trusted_
subnet_ strid - untrusted_
subnet_ strid
- network
Virtual StringAppliance Id - The ID of the Palo Alto Network Virtual Appliance in the VHub. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- public
Ip List<String>Address Ids - Specifies a list of Public IP IDs to use for this Next Generation Firewall.
- virtual
Hub StringId - The ID of the Virtual Hub this Next generation Fireall will be deployed in. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created.
- egress
Nat List<String>Ip Address Ids - Specifies a list of Public IP IDs to use for Egress NAT.
- egress
Nat List<String>Ip Addresses - ip
Of StringTrust For User Defined Routes - public
Ip List<String>Addresses - trusted
Address List<String>Ranges - Specifies a list of trusted ranges to use for the Network.
- trusted
Subnet StringId - untrusted
Subnet StringId
Import
Palo Alto Next Generation Firewall VHub Local Rulestacks can be imported using the resource id
, e.g.
$ pulumi import azure:paloalto/nextGenerationFirewallVirtualHubLocalRulestack:NextGenerationFirewallVirtualHubLocalRulestack example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/firewalls/myVhubRulestackFW
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
azurerm
Terraform Provider.