We recommend using Azure Native.
azure.paloalto.LocalRulestack
Explore with Pulumi AI
Manages a Palo Alto Networks Rulestack.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "rg-example",
location: "West Europe",
});
const exampleLocalRulestack = new azure.paloalto.LocalRulestack("example", {
name: "example",
resourceGroupName: example.name,
location: example.location,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="rg-example",
location="West Europe")
example_local_rulestack = azure.paloalto.LocalRulestack("example",
name="example",
resource_group_name=example.name,
location=example.location)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/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("rg-example"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = paloalto.NewLocalRulestack(ctx, "example", &paloalto.LocalRulestackArgs{
Name: pulumi.String("example"),
ResourceGroupName: example.Name,
Location: example.Location,
})
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 = "rg-example",
Location = "West Europe",
});
var exampleLocalRulestack = new Azure.PaloAlto.LocalRulestack("example", new()
{
Name = "example",
ResourceGroupName = example.Name,
Location = example.Location,
});
});
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.paloalto.LocalRulestack;
import com.pulumi.azure.paloalto.LocalRulestackArgs;
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("rg-example")
.location("West Europe")
.build());
var exampleLocalRulestack = new LocalRulestack("exampleLocalRulestack", LocalRulestackArgs.builder()
.name("example")
.resourceGroupName(example.name())
.location(example.location())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: rg-example
location: West Europe
exampleLocalRulestack:
type: azure:paloalto:LocalRulestack
name: example
properties:
name: example
resourceGroupName: ${example.name}
location: ${example.location}
Create LocalRulestack Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LocalRulestack(name: string, args: LocalRulestackArgs, opts?: CustomResourceOptions);
@overload
def LocalRulestack(resource_name: str,
args: LocalRulestackArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LocalRulestack(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
anti_spyware_profile: Optional[str] = None,
anti_virus_profile: Optional[str] = None,
description: Optional[str] = None,
dns_subscription: Optional[str] = None,
file_blocking_profile: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
url_filtering_profile: Optional[str] = None,
vulnerability_profile: Optional[str] = None)
func NewLocalRulestack(ctx *Context, name string, args LocalRulestackArgs, opts ...ResourceOption) (*LocalRulestack, error)
public LocalRulestack(string name, LocalRulestackArgs args, CustomResourceOptions? opts = null)
public LocalRulestack(String name, LocalRulestackArgs args)
public LocalRulestack(String name, LocalRulestackArgs args, CustomResourceOptions options)
type: azure:paloalto:LocalRulestack
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 LocalRulestackArgs
- 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 LocalRulestackArgs
- 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 LocalRulestackArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LocalRulestackArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LocalRulestackArgs
- 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 localRulestackResource = new Azure.PaloAlto.LocalRulestack("localRulestackResource", new()
{
ResourceGroupName = "string",
AntiSpywareProfile = "string",
AntiVirusProfile = "string",
Description = "string",
DnsSubscription = "string",
FileBlockingProfile = "string",
Location = "string",
Name = "string",
UrlFilteringProfile = "string",
VulnerabilityProfile = "string",
});
example, err := paloalto.NewLocalRulestack(ctx, "localRulestackResource", &paloalto.LocalRulestackArgs{
ResourceGroupName: pulumi.String("string"),
AntiSpywareProfile: pulumi.String("string"),
AntiVirusProfile: pulumi.String("string"),
Description: pulumi.String("string"),
DnsSubscription: pulumi.String("string"),
FileBlockingProfile: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
UrlFilteringProfile: pulumi.String("string"),
VulnerabilityProfile: pulumi.String("string"),
})
var localRulestackResource = new LocalRulestack("localRulestackResource", LocalRulestackArgs.builder()
.resourceGroupName("string")
.antiSpywareProfile("string")
.antiVirusProfile("string")
.description("string")
.dnsSubscription("string")
.fileBlockingProfile("string")
.location("string")
.name("string")
.urlFilteringProfile("string")
.vulnerabilityProfile("string")
.build());
local_rulestack_resource = azure.paloalto.LocalRulestack("localRulestackResource",
resource_group_name="string",
anti_spyware_profile="string",
anti_virus_profile="string",
description="string",
dns_subscription="string",
file_blocking_profile="string",
location="string",
name="string",
url_filtering_profile="string",
vulnerability_profile="string")
const localRulestackResource = new azure.paloalto.LocalRulestack("localRulestackResource", {
resourceGroupName: "string",
antiSpywareProfile: "string",
antiVirusProfile: "string",
description: "string",
dnsSubscription: "string",
fileBlockingProfile: "string",
location: "string",
name: "string",
urlFilteringProfile: "string",
vulnerabilityProfile: "string",
});
type: azure:paloalto:LocalRulestack
properties:
antiSpywareProfile: string
antiVirusProfile: string
description: string
dnsSubscription: string
fileBlockingProfile: string
location: string
name: string
resourceGroupName: string
urlFilteringProfile: string
vulnerabilityProfile: string
LocalRulestack 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 LocalRulestack resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Anti
Spyware stringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - Anti
Virus stringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - Description string
- The description for this Local Rulestack.
- Dns
Subscription string - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - File
Blocking stringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - Location string
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Name string
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Url
Filtering stringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - Vulnerability
Profile string - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- Resource
Group stringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Anti
Spyware stringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - Anti
Virus stringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - Description string
- The description for this Local Rulestack.
- Dns
Subscription string - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - File
Blocking stringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - Location string
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Name string
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Url
Filtering stringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - Vulnerability
Profile string - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- resource
Group StringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- anti
Spyware StringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti
Virus StringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description String
- The description for this Local Rulestack.
- dns
Subscription String - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file
Blocking StringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location String
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name String
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url
Filtering StringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability
Profile String - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- resource
Group stringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- anti
Spyware stringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti
Virus stringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description string
- The description for this Local Rulestack.
- dns
Subscription string - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file
Blocking stringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location string
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name string
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url
Filtering stringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability
Profile string - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- resource_
group_ strname - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- anti_
spyware_ strprofile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti_
virus_ strprofile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description str
- The description for this Local Rulestack.
- dns_
subscription str - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file_
blocking_ strprofile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location str
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name str
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url_
filtering_ strprofile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability_
profile str - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- resource
Group StringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- anti
Spyware StringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti
Virus StringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description String
- The description for this Local Rulestack.
- dns
Subscription String - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file
Blocking StringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location String
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name String
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url
Filtering StringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability
Profile String - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
Outputs
All input properties are implicitly available as output properties. Additionally, the LocalRulestack 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 LocalRulestack Resource
Get an existing LocalRulestack 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?: LocalRulestackState, opts?: CustomResourceOptions): LocalRulestack
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
anti_spyware_profile: Optional[str] = None,
anti_virus_profile: Optional[str] = None,
description: Optional[str] = None,
dns_subscription: Optional[str] = None,
file_blocking_profile: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
url_filtering_profile: Optional[str] = None,
vulnerability_profile: Optional[str] = None) -> LocalRulestack
func GetLocalRulestack(ctx *Context, name string, id IDInput, state *LocalRulestackState, opts ...ResourceOption) (*LocalRulestack, error)
public static LocalRulestack Get(string name, Input<string> id, LocalRulestackState? state, CustomResourceOptions? opts = null)
public static LocalRulestack get(String name, Output<String> id, LocalRulestackState 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.
- Anti
Spyware stringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - Anti
Virus stringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - Description string
- The description for this Local Rulestack.
- Dns
Subscription string - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - File
Blocking stringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - Location string
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Name string
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Resource
Group stringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Url
Filtering stringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - Vulnerability
Profile string - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- Anti
Spyware stringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - Anti
Virus stringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - Description string
- The description for this Local Rulestack.
- Dns
Subscription string - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - File
Blocking stringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - Location string
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Name string
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Resource
Group stringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- Url
Filtering stringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - Vulnerability
Profile string - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- anti
Spyware StringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti
Virus StringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description String
- The description for this Local Rulestack.
- dns
Subscription String - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file
Blocking StringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location String
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name String
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- resource
Group StringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url
Filtering StringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability
Profile String - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- anti
Spyware stringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti
Virus stringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description string
- The description for this Local Rulestack.
- dns
Subscription string - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file
Blocking stringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location string
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name string
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- resource
Group stringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url
Filtering stringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability
Profile string - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- anti_
spyware_ strprofile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti_
virus_ strprofile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description str
- The description for this Local Rulestack.
- dns_
subscription str - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file_
blocking_ strprofile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location str
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name str
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- resource_
group_ strname - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url_
filtering_ strprofile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability_
profile str - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
- anti
Spyware StringProfile - The setting to use for Anti-Spyware. Possible values include
BestPractice
, andCustom
. - anti
Virus StringProfile - The setting to use for Anti-Virus. Possible values include
BestPractice
, andCustom
. - description String
- The description for this Local Rulestack.
- dns
Subscription String - TThe setting to use for DNS Subscription. Possible values include
BestPractice
, andCustom
. - file
Blocking StringProfile - The setting to use for the File Blocking Profile. Possible values include
BestPractice
, andCustom
. - location String
- The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- name String
- The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.
- resource
Group StringName - The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.
- url
Filtering StringProfile - The setting to use for the URL Filtering Profile. Possible values include
BestPractice
, andCustom
. - vulnerability
Profile String - The setting to use for the Vulnerability Profile. Possible values include
BestPractice
, andCustom
.
Import
Palo Alto Networks Rulestacks can be imported using the resource id
, e.g.
$ pulumi import azure:paloalto/localRulestack:LocalRulestack example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/myLocalRulestack
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.