1. Packages
  2. Packages
  3. Strata Cloud Manager Provider
  4. API Docs
  5. ForwardingProfileRegionalAndCustomProxy
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi
scm logo
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi

    ForwardingProfileRegionalAndCustomProxy resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Basic gp-and-pac proxy with a primary proxy server
    // proxy_1 and proxy_2 are only available for gp-and-pac
    const exampleGpAndPacBasic = new scm.ForwardingProfileRegionalAndCustomProxy("example_gp_and_pac_basic", {
        folder: "Mobile Users",
        name: "example-gp-pac-proxy-1",
        type: "gp-and-pac",
        proxy1: {
            fqdn: "proxy1.example.com",
            port: 8080,
            location: "us-east",
        },
    });
    // gp-and-pac with primary and secondary proxy servers for high availability
    const exampleGpAndPacDualProxy = new scm.ForwardingProfileRegionalAndCustomProxy("example_gp_and_pac_dual_proxy", {
        folder: "Mobile Users",
        name: "example-gp-pac-dual-proxy",
        description: "Managed by Terraform - Dual proxy configuration for high availability",
        type: "gp-and-pac",
        proxy1: {
            fqdn: "proxy1.example.com",
            port: 8080,
            location: "us-east",
        },
        proxy2: {
            fqdn: "proxy2.example.com",
            port: 8080,
            location: "us-west",
        },
    });
    // Basic ztna-agent proxy
    // connectivity_preference and fallback_option are only available for ztna-agent
    // At least one connectivity_preference entry must have enabled = true
    const exampleZtnaBasic = new scm.ForwardingProfileRegionalAndCustomProxy("example_ztna_basic", {
        folder: "Mobile Users",
        name: "example-ztna-proxy",
        description: "Managed by Terraform - ZTNA agent proxy configuration",
        type: "ztna-agent",
        fallbackOption: "fail-open",
        connectivityPreferences: [
            {
                name: "tunnel",
                enabled: true,
            },
            {
                name: "proxy",
                enabled: false,
            },
        ],
    });
    // Full ztna-agent with location_preference and Prisma Access locations
    // location_preference is only available for ztna-agent
    const exampleZtnaFull = new scm.ForwardingProfileRegionalAndCustomProxy("example_ztna_full", {
        folder: "Mobile Users",
        name: "example-ztna-full",
        description: "Managed by Terraform - Full ZTNA agent with location and connectivity settings",
        type: "ztna-agent",
        fallbackOption: "fail-safe",
        locationPreference: "specific-pa-location",
        prismaAccessLocations: [
            {
                name: "americas",
                locations: [
                    "us-east-1",
                    "us-west-1",
                ],
            },
            {
                name: "europe",
                locations: ["europe-west"],
            },
            {
                name: "apac",
                locations: ["asia-southeast1"],
            },
        ],
        connectivityPreferences: [
            {
                name: "tunnel",
                enabled: true,
            },
            {
                name: "adns",
                enabled: true,
            },
            {
                name: "masque",
                enabled: true,
            },
        ],
    });
    
    import pulumi
    import pulumi_scm as scm
    
    # Basic gp-and-pac proxy with a primary proxy server
    # proxy_1 and proxy_2 are only available for gp-and-pac
    example_gp_and_pac_basic = scm.ForwardingProfileRegionalAndCustomProxy("example_gp_and_pac_basic",
        folder="Mobile Users",
        name="example-gp-pac-proxy-1",
        type="gp-and-pac",
        proxy1={
            "fqdn": "proxy1.example.com",
            "port": 8080,
            "location": "us-east",
        })
    # gp-and-pac with primary and secondary proxy servers for high availability
    example_gp_and_pac_dual_proxy = scm.ForwardingProfileRegionalAndCustomProxy("example_gp_and_pac_dual_proxy",
        folder="Mobile Users",
        name="example-gp-pac-dual-proxy",
        description="Managed by Terraform - Dual proxy configuration for high availability",
        type="gp-and-pac",
        proxy1={
            "fqdn": "proxy1.example.com",
            "port": 8080,
            "location": "us-east",
        },
        proxy2={
            "fqdn": "proxy2.example.com",
            "port": 8080,
            "location": "us-west",
        })
    # Basic ztna-agent proxy
    # connectivity_preference and fallback_option are only available for ztna-agent
    # At least one connectivity_preference entry must have enabled = true
    example_ztna_basic = scm.ForwardingProfileRegionalAndCustomProxy("example_ztna_basic",
        folder="Mobile Users",
        name="example-ztna-proxy",
        description="Managed by Terraform - ZTNA agent proxy configuration",
        type="ztna-agent",
        fallback_option="fail-open",
        connectivity_preferences=[
            {
                "name": "tunnel",
                "enabled": True,
            },
            {
                "name": "proxy",
                "enabled": False,
            },
        ])
    # Full ztna-agent with location_preference and Prisma Access locations
    # location_preference is only available for ztna-agent
    example_ztna_full = scm.ForwardingProfileRegionalAndCustomProxy("example_ztna_full",
        folder="Mobile Users",
        name="example-ztna-full",
        description="Managed by Terraform - Full ZTNA agent with location and connectivity settings",
        type="ztna-agent",
        fallback_option="fail-safe",
        location_preference="specific-pa-location",
        prisma_access_locations=[
            {
                "name": "americas",
                "locations": [
                    "us-east-1",
                    "us-west-1",
                ],
            },
            {
                "name": "europe",
                "locations": ["europe-west"],
            },
            {
                "name": "apac",
                "locations": ["asia-southeast1"],
            },
        ],
        connectivity_preferences=[
            {
                "name": "tunnel",
                "enabled": True,
            },
            {
                "name": "adns",
                "enabled": True,
            },
            {
                "name": "masque",
                "enabled": True,
            },
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Basic gp-and-pac proxy with a primary proxy server
    		// proxy_1 and proxy_2 are only available for gp-and-pac
    		_, err := scm.NewForwardingProfileRegionalAndCustomProxy(ctx, "example_gp_and_pac_basic", &scm.ForwardingProfileRegionalAndCustomProxyArgs{
    			Folder: pulumi.String("Mobile Users"),
    			Name:   pulumi.String("example-gp-pac-proxy-1"),
    			Type:   pulumi.String("gp-and-pac"),
    			Proxy1: &scm.ForwardingProfileRegionalAndCustomProxyProxy1Args{
    				Fqdn:     pulumi.String("proxy1.example.com"),
    				Port:     pulumi.Int(8080),
    				Location: pulumi.String("us-east"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// gp-and-pac with primary and secondary proxy servers for high availability
    		_, err = scm.NewForwardingProfileRegionalAndCustomProxy(ctx, "example_gp_and_pac_dual_proxy", &scm.ForwardingProfileRegionalAndCustomProxyArgs{
    			Folder:      pulumi.String("Mobile Users"),
    			Name:        pulumi.String("example-gp-pac-dual-proxy"),
    			Description: pulumi.String("Managed by Terraform - Dual proxy configuration for high availability"),
    			Type:        pulumi.String("gp-and-pac"),
    			Proxy1: &scm.ForwardingProfileRegionalAndCustomProxyProxy1Args{
    				Fqdn:     pulumi.String("proxy1.example.com"),
    				Port:     pulumi.Int(8080),
    				Location: pulumi.String("us-east"),
    			},
    			Proxy2: &scm.ForwardingProfileRegionalAndCustomProxyProxy2Args{
    				Fqdn:     pulumi.String("proxy2.example.com"),
    				Port:     pulumi.Int(8080),
    				Location: pulumi.String("us-west"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Basic ztna-agent proxy
    		// connectivity_preference and fallback_option are only available for ztna-agent
    		// At least one connectivity_preference entry must have enabled = true
    		_, err = scm.NewForwardingProfileRegionalAndCustomProxy(ctx, "example_ztna_basic", &scm.ForwardingProfileRegionalAndCustomProxyArgs{
    			Folder:         pulumi.String("Mobile Users"),
    			Name:           pulumi.String("example-ztna-proxy"),
    			Description:    pulumi.String("Managed by Terraform - ZTNA agent proxy configuration"),
    			Type:           pulumi.String("ztna-agent"),
    			FallbackOption: pulumi.String("fail-open"),
    			ConnectivityPreferences: scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArray{
    				&scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs{
    					Name:    pulumi.String("tunnel"),
    					Enabled: pulumi.Bool(true),
    				},
    				&scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs{
    					Name:    pulumi.String("proxy"),
    					Enabled: pulumi.Bool(false),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Full ztna-agent with location_preference and Prisma Access locations
    		// location_preference is only available for ztna-agent
    		_, err = scm.NewForwardingProfileRegionalAndCustomProxy(ctx, "example_ztna_full", &scm.ForwardingProfileRegionalAndCustomProxyArgs{
    			Folder:             pulumi.String("Mobile Users"),
    			Name:               pulumi.String("example-ztna-full"),
    			Description:        pulumi.String("Managed by Terraform - Full ZTNA agent with location and connectivity settings"),
    			Type:               pulumi.String("ztna-agent"),
    			FallbackOption:     pulumi.String("fail-safe"),
    			LocationPreference: pulumi.String("specific-pa-location"),
    			PrismaAccessLocations: scm.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArray{
    				&scm.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs{
    					Name: pulumi.String("americas"),
    					Locations: pulumi.StringArray{
    						pulumi.String("us-east-1"),
    						pulumi.String("us-west-1"),
    					},
    				},
    				&scm.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs{
    					Name: pulumi.String("europe"),
    					Locations: pulumi.StringArray{
    						pulumi.String("europe-west"),
    					},
    				},
    				&scm.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs{
    					Name: pulumi.String("apac"),
    					Locations: pulumi.StringArray{
    						pulumi.String("asia-southeast1"),
    					},
    				},
    			},
    			ConnectivityPreferences: scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArray{
    				&scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs{
    					Name:    pulumi.String("tunnel"),
    					Enabled: pulumi.Bool(true),
    				},
    				&scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs{
    					Name:    pulumi.String("adns"),
    					Enabled: pulumi.Bool(true),
    				},
    				&scm.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs{
    					Name:    pulumi.String("masque"),
    					Enabled: pulumi.Bool(true),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Basic gp-and-pac proxy with a primary proxy server
        // proxy_1 and proxy_2 are only available for gp-and-pac
        var exampleGpAndPacBasic = new Scm.Index.ForwardingProfileRegionalAndCustomProxy("example_gp_and_pac_basic", new()
        {
            Folder = "Mobile Users",
            Name = "example-gp-pac-proxy-1",
            Type = "gp-and-pac",
            Proxy1 = new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyProxy1Args
            {
                Fqdn = "proxy1.example.com",
                Port = 8080,
                Location = "us-east",
            },
        });
    
        // gp-and-pac with primary and secondary proxy servers for high availability
        var exampleGpAndPacDualProxy = new Scm.Index.ForwardingProfileRegionalAndCustomProxy("example_gp_and_pac_dual_proxy", new()
        {
            Folder = "Mobile Users",
            Name = "example-gp-pac-dual-proxy",
            Description = "Managed by Terraform - Dual proxy configuration for high availability",
            Type = "gp-and-pac",
            Proxy1 = new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyProxy1Args
            {
                Fqdn = "proxy1.example.com",
                Port = 8080,
                Location = "us-east",
            },
            Proxy2 = new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyProxy2Args
            {
                Fqdn = "proxy2.example.com",
                Port = 8080,
                Location = "us-west",
            },
        });
    
        // Basic ztna-agent proxy
        // connectivity_preference and fallback_option are only available for ztna-agent
        // At least one connectivity_preference entry must have enabled = true
        var exampleZtnaBasic = new Scm.Index.ForwardingProfileRegionalAndCustomProxy("example_ztna_basic", new()
        {
            Folder = "Mobile Users",
            Name = "example-ztna-proxy",
            Description = "Managed by Terraform - ZTNA agent proxy configuration",
            Type = "ztna-agent",
            FallbackOption = "fail-open",
            ConnectivityPreferences = new[]
            {
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
                {
                    Name = "tunnel",
                    Enabled = true,
                },
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
                {
                    Name = "proxy",
                    Enabled = false,
                },
            },
        });
    
        // Full ztna-agent with location_preference and Prisma Access locations
        // location_preference is only available for ztna-agent
        var exampleZtnaFull = new Scm.Index.ForwardingProfileRegionalAndCustomProxy("example_ztna_full", new()
        {
            Folder = "Mobile Users",
            Name = "example-ztna-full",
            Description = "Managed by Terraform - Full ZTNA agent with location and connectivity settings",
            Type = "ztna-agent",
            FallbackOption = "fail-safe",
            LocationPreference = "specific-pa-location",
            PrismaAccessLocations = new[]
            {
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs
                {
                    Name = "americas",
                    Locations = new[]
                    {
                        "us-east-1",
                        "us-west-1",
                    },
                },
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs
                {
                    Name = "europe",
                    Locations = new[]
                    {
                        "europe-west",
                    },
                },
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs
                {
                    Name = "apac",
                    Locations = new[]
                    {
                        "asia-southeast1",
                    },
                },
            },
            ConnectivityPreferences = new[]
            {
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
                {
                    Name = "tunnel",
                    Enabled = true,
                },
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
                {
                    Name = "adns",
                    Enabled = true,
                },
                new Scm.Inputs.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
                {
                    Name = "masque",
                    Enabled = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ForwardingProfileRegionalAndCustomProxy;
    import com.pulumi.scm.ForwardingProfileRegionalAndCustomProxyArgs;
    import com.pulumi.scm.inputs.ForwardingProfileRegionalAndCustomProxyProxy1Args;
    import com.pulumi.scm.inputs.ForwardingProfileRegionalAndCustomProxyProxy2Args;
    import com.pulumi.scm.inputs.ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs;
    import com.pulumi.scm.inputs.ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs;
    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) {
            // Basic gp-and-pac proxy with a primary proxy server
            // proxy_1 and proxy_2 are only available for gp-and-pac
            var exampleGpAndPacBasic = new ForwardingProfileRegionalAndCustomProxy("exampleGpAndPacBasic", ForwardingProfileRegionalAndCustomProxyArgs.builder()
                .folder("Mobile Users")
                .name("example-gp-pac-proxy-1")
                .type("gp-and-pac")
                .proxy1(ForwardingProfileRegionalAndCustomProxyProxy1Args.builder()
                    .fqdn("proxy1.example.com")
                    .port(8080)
                    .location("us-east")
                    .build())
                .build());
    
            // gp-and-pac with primary and secondary proxy servers for high availability
            var exampleGpAndPacDualProxy = new ForwardingProfileRegionalAndCustomProxy("exampleGpAndPacDualProxy", ForwardingProfileRegionalAndCustomProxyArgs.builder()
                .folder("Mobile Users")
                .name("example-gp-pac-dual-proxy")
                .description("Managed by Terraform - Dual proxy configuration for high availability")
                .type("gp-and-pac")
                .proxy1(ForwardingProfileRegionalAndCustomProxyProxy1Args.builder()
                    .fqdn("proxy1.example.com")
                    .port(8080)
                    .location("us-east")
                    .build())
                .proxy2(ForwardingProfileRegionalAndCustomProxyProxy2Args.builder()
                    .fqdn("proxy2.example.com")
                    .port(8080)
                    .location("us-west")
                    .build())
                .build());
    
            // Basic ztna-agent proxy
            // connectivity_preference and fallback_option are only available for ztna-agent
            // At least one connectivity_preference entry must have enabled = true
            var exampleZtnaBasic = new ForwardingProfileRegionalAndCustomProxy("exampleZtnaBasic", ForwardingProfileRegionalAndCustomProxyArgs.builder()
                .folder("Mobile Users")
                .name("example-ztna-proxy")
                .description("Managed by Terraform - ZTNA agent proxy configuration")
                .type("ztna-agent")
                .fallbackOption("fail-open")
                .connectivityPreferences(            
                    ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs.builder()
                        .name("tunnel")
                        .enabled(true)
                        .build(),
                    ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs.builder()
                        .name("proxy")
                        .enabled(false)
                        .build())
                .build());
    
            // Full ztna-agent with location_preference and Prisma Access locations
            // location_preference is only available for ztna-agent
            var exampleZtnaFull = new ForwardingProfileRegionalAndCustomProxy("exampleZtnaFull", ForwardingProfileRegionalAndCustomProxyArgs.builder()
                .folder("Mobile Users")
                .name("example-ztna-full")
                .description("Managed by Terraform - Full ZTNA agent with location and connectivity settings")
                .type("ztna-agent")
                .fallbackOption("fail-safe")
                .locationPreference("specific-pa-location")
                .prismaAccessLocations(            
                    ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs.builder()
                        .name("americas")
                        .locations(                    
                            "us-east-1",
                            "us-west-1")
                        .build(),
                    ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs.builder()
                        .name("europe")
                        .locations("europe-west")
                        .build(),
                    ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs.builder()
                        .name("apac")
                        .locations("asia-southeast1")
                        .build())
                .connectivityPreferences(            
                    ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs.builder()
                        .name("tunnel")
                        .enabled(true)
                        .build(),
                    ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs.builder()
                        .name("adns")
                        .enabled(true)
                        .build(),
                    ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs.builder()
                        .name("masque")
                        .enabled(true)
                        .build())
                .build());
    
        }
    }
    
    resources:
      # Basic gp-and-pac proxy with a primary proxy server
      # proxy_1 and proxy_2 are only available for gp-and-pac
      exampleGpAndPacBasic:
        type: scm:ForwardingProfileRegionalAndCustomProxy
        name: example_gp_and_pac_basic
        properties:
          folder: Mobile Users
          name: example-gp-pac-proxy-1
          type: gp-and-pac
          proxy1:
            fqdn: proxy1.example.com
            port: 8080
            location: us-east
      # gp-and-pac with primary and secondary proxy servers for high availability
      exampleGpAndPacDualProxy:
        type: scm:ForwardingProfileRegionalAndCustomProxy
        name: example_gp_and_pac_dual_proxy
        properties:
          folder: Mobile Users
          name: example-gp-pac-dual-proxy
          description: Managed by Terraform - Dual proxy configuration for high availability
          type: gp-and-pac
          proxy1:
            fqdn: proxy1.example.com
            port: 8080
            location: us-east
          proxy2:
            fqdn: proxy2.example.com
            port: 8080
            location: us-west
      # Basic ztna-agent proxy
      # connectivity_preference and fallback_option are only available for ztna-agent
      # At least one connectivity_preference entry must have enabled = true
      exampleZtnaBasic:
        type: scm:ForwardingProfileRegionalAndCustomProxy
        name: example_ztna_basic
        properties:
          folder: Mobile Users
          name: example-ztna-proxy
          description: Managed by Terraform - ZTNA agent proxy configuration
          type: ztna-agent
          fallbackOption: fail-open
          connectivityPreferences:
            - name: tunnel
              enabled: true
            - name: proxy
              enabled: false
      # Full ztna-agent with location_preference and Prisma Access locations
      # location_preference is only available for ztna-agent
      exampleZtnaFull:
        type: scm:ForwardingProfileRegionalAndCustomProxy
        name: example_ztna_full
        properties:
          folder: Mobile Users
          name: example-ztna-full
          description: Managed by Terraform - Full ZTNA agent with location and connectivity settings
          type: ztna-agent
          fallbackOption: fail-safe
          locationPreference: specific-pa-location
          prismaAccessLocations:
            - name: americas
              locations:
                - us-east-1
                - us-west-1
            - name: europe
              locations:
                - europe-west
            - name: apac
              locations:
                - asia-southeast1
          connectivityPreferences:
            - name: tunnel
              enabled: true
            - name: adns
              enabled: true
            - name: masque
              enabled: true
    

    Create ForwardingProfileRegionalAndCustomProxy Resource

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

    Constructor syntax

    new ForwardingProfileRegionalAndCustomProxy(name: string, args?: ForwardingProfileRegionalAndCustomProxyArgs, opts?: CustomResourceOptions);
    @overload
    def ForwardingProfileRegionalAndCustomProxy(resource_name: str,
                                                args: Optional[ForwardingProfileRegionalAndCustomProxyArgs] = None,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ForwardingProfileRegionalAndCustomProxy(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                connectivity_preferences: Optional[Sequence[ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs]] = None,
                                                description: Optional[str] = None,
                                                fallback_option: Optional[str] = None,
                                                folder: Optional[str] = None,
                                                location_preference: Optional[str] = None,
                                                name: Optional[str] = None,
                                                prisma_access_locations: Optional[Sequence[ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs]] = None,
                                                proxy1: Optional[ForwardingProfileRegionalAndCustomProxyProxy1Args] = None,
                                                proxy2: Optional[ForwardingProfileRegionalAndCustomProxyProxy2Args] = None,
                                                type: Optional[str] = None)
    func NewForwardingProfileRegionalAndCustomProxy(ctx *Context, name string, args *ForwardingProfileRegionalAndCustomProxyArgs, opts ...ResourceOption) (*ForwardingProfileRegionalAndCustomProxy, error)
    public ForwardingProfileRegionalAndCustomProxy(string name, ForwardingProfileRegionalAndCustomProxyArgs? args = null, CustomResourceOptions? opts = null)
    public ForwardingProfileRegionalAndCustomProxy(String name, ForwardingProfileRegionalAndCustomProxyArgs args)
    public ForwardingProfileRegionalAndCustomProxy(String name, ForwardingProfileRegionalAndCustomProxyArgs args, CustomResourceOptions options)
    
    type: scm:ForwardingProfileRegionalAndCustomProxy
    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 ForwardingProfileRegionalAndCustomProxyArgs
    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 ForwardingProfileRegionalAndCustomProxyArgs
    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 ForwardingProfileRegionalAndCustomProxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ForwardingProfileRegionalAndCustomProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ForwardingProfileRegionalAndCustomProxyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ForwardingProfileRegionalAndCustomProxy 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 ForwardingProfileRegionalAndCustomProxy resource accepts the following input properties:

    ConnectivityPreferences List<ForwardingProfileRegionalAndCustomProxyConnectivityPreference>
    List of connectivity methods and their enablement status for establishing proxy connections
    Description string
    regional and custom proxy configuration description
    FallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    Folder string
    The folder in which the resource is defined
    LocationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    Name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    PrismaAccessLocations List<ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    Proxy1 ForwardingProfileRegionalAndCustomProxyProxy1
    primary regional and custom proxy
    Proxy2 ForwardingProfileRegionalAndCustomProxyProxy2
    secondary regional and custom proxy
    Type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    ConnectivityPreferences []ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
    List of connectivity methods and their enablement status for establishing proxy connections
    Description string
    regional and custom proxy configuration description
    FallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    Folder string
    The folder in which the resource is defined
    LocationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    Name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    PrismaAccessLocations []ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    Proxy1 ForwardingProfileRegionalAndCustomProxyProxy1Args
    primary regional and custom proxy
    Proxy2 ForwardingProfileRegionalAndCustomProxyProxy2Args
    secondary regional and custom proxy
    Type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences List<ForwardingProfileRegionalAndCustomProxyConnectivityPreference>
    List of connectivity methods and their enablement status for establishing proxy connections
    description String
    regional and custom proxy configuration description
    fallbackOption String
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder String
    The folder in which the resource is defined
    locationPreference String
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name String
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations List<ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 ForwardingProfileRegionalAndCustomProxyProxy1
    primary regional and custom proxy
    proxy2 ForwardingProfileRegionalAndCustomProxyProxy2
    secondary regional and custom proxy
    type String
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences ForwardingProfileRegionalAndCustomProxyConnectivityPreference[]
    List of connectivity methods and their enablement status for establishing proxy connections
    description string
    regional and custom proxy configuration description
    fallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder string
    The folder in which the resource is defined
    locationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation[]
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 ForwardingProfileRegionalAndCustomProxyProxy1
    primary regional and custom proxy
    proxy2 ForwardingProfileRegionalAndCustomProxyProxy2
    secondary regional and custom proxy
    type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivity_preferences Sequence[ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs]
    List of connectivity methods and their enablement status for establishing proxy connections
    description str
    regional and custom proxy configuration description
    fallback_option str
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder str
    The folder in which the resource is defined
    location_preference str
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name str
    alphanumeric string [ 0-9a-zA-Z ._-]
    prisma_access_locations Sequence[ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs]
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 ForwardingProfileRegionalAndCustomProxyProxy1Args
    primary regional and custom proxy
    proxy2 ForwardingProfileRegionalAndCustomProxyProxy2Args
    secondary regional and custom proxy
    type str
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences List<Property Map>
    List of connectivity methods and their enablement status for establishing proxy connections
    description String
    regional and custom proxy configuration description
    fallbackOption String
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder String
    The folder in which the resource is defined
    locationPreference String
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name String
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations List<Property Map>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 Property Map
    primary regional and custom proxy
    proxy2 Property Map
    secondary regional and custom proxy
    type String
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.

    Look up Existing ForwardingProfileRegionalAndCustomProxy Resource

    Get an existing ForwardingProfileRegionalAndCustomProxy 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?: ForwardingProfileRegionalAndCustomProxyState, opts?: CustomResourceOptions): ForwardingProfileRegionalAndCustomProxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connectivity_preferences: Optional[Sequence[ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs]] = None,
            description: Optional[str] = None,
            fallback_option: Optional[str] = None,
            folder: Optional[str] = None,
            location_preference: Optional[str] = None,
            name: Optional[str] = None,
            prisma_access_locations: Optional[Sequence[ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs]] = None,
            proxy1: Optional[ForwardingProfileRegionalAndCustomProxyProxy1Args] = None,
            proxy2: Optional[ForwardingProfileRegionalAndCustomProxyProxy2Args] = None,
            tfid: Optional[str] = None,
            type: Optional[str] = None) -> ForwardingProfileRegionalAndCustomProxy
    func GetForwardingProfileRegionalAndCustomProxy(ctx *Context, name string, id IDInput, state *ForwardingProfileRegionalAndCustomProxyState, opts ...ResourceOption) (*ForwardingProfileRegionalAndCustomProxy, error)
    public static ForwardingProfileRegionalAndCustomProxy Get(string name, Input<string> id, ForwardingProfileRegionalAndCustomProxyState? state, CustomResourceOptions? opts = null)
    public static ForwardingProfileRegionalAndCustomProxy get(String name, Output<String> id, ForwardingProfileRegionalAndCustomProxyState state, CustomResourceOptions options)
    resources:  _:    type: scm:ForwardingProfileRegionalAndCustomProxy    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.
    The following state arguments are supported:
    ConnectivityPreferences List<ForwardingProfileRegionalAndCustomProxyConnectivityPreference>
    List of connectivity methods and their enablement status for establishing proxy connections
    Description string
    regional and custom proxy configuration description
    FallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    Folder string
    The folder in which the resource is defined
    LocationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    Name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    PrismaAccessLocations List<ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    Proxy1 ForwardingProfileRegionalAndCustomProxyProxy1
    primary regional and custom proxy
    Proxy2 ForwardingProfileRegionalAndCustomProxyProxy2
    secondary regional and custom proxy
    Tfid string
    The Terraform ID.
    Type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    ConnectivityPreferences []ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs
    List of connectivity methods and their enablement status for establishing proxy connections
    Description string
    regional and custom proxy configuration description
    FallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    Folder string
    The folder in which the resource is defined
    LocationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    Name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    PrismaAccessLocations []ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    Proxy1 ForwardingProfileRegionalAndCustomProxyProxy1Args
    primary regional and custom proxy
    Proxy2 ForwardingProfileRegionalAndCustomProxyProxy2Args
    secondary regional and custom proxy
    Tfid string
    The Terraform ID.
    Type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences List<ForwardingProfileRegionalAndCustomProxyConnectivityPreference>
    List of connectivity methods and their enablement status for establishing proxy connections
    description String
    regional and custom proxy configuration description
    fallbackOption String
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder String
    The folder in which the resource is defined
    locationPreference String
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name String
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations List<ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 ForwardingProfileRegionalAndCustomProxyProxy1
    primary regional and custom proxy
    proxy2 ForwardingProfileRegionalAndCustomProxyProxy2
    secondary regional and custom proxy
    tfid String
    The Terraform ID.
    type String
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences ForwardingProfileRegionalAndCustomProxyConnectivityPreference[]
    List of connectivity methods and their enablement status for establishing proxy connections
    description string
    regional and custom proxy configuration description
    fallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder string
    The folder in which the resource is defined
    locationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation[]
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 ForwardingProfileRegionalAndCustomProxyProxy1
    primary regional and custom proxy
    proxy2 ForwardingProfileRegionalAndCustomProxyProxy2
    secondary regional and custom proxy
    tfid string
    The Terraform ID.
    type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivity_preferences Sequence[ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs]
    List of connectivity methods and their enablement status for establishing proxy connections
    description str
    regional and custom proxy configuration description
    fallback_option str
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder str
    The folder in which the resource is defined
    location_preference str
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name str
    alphanumeric string [ 0-9a-zA-Z ._-]
    prisma_access_locations Sequence[ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs]
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 ForwardingProfileRegionalAndCustomProxyProxy1Args
    primary regional and custom proxy
    proxy2 ForwardingProfileRegionalAndCustomProxyProxy2Args
    secondary regional and custom proxy
    tfid str
    The Terraform ID.
    type str
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences List<Property Map>
    List of connectivity methods and their enablement status for establishing proxy connections
    description String
    regional and custom proxy configuration description
    fallbackOption String
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder String
    The folder in which the resource is defined
    locationPreference String
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name String
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations List<Property Map>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 Property Map
    primary regional and custom proxy
    proxy2 Property Map
    secondary regional and custom proxy
    tfid String
    The Terraform ID.
    type String
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding

    Supporting Types

    ForwardingProfileRegionalAndCustomProxyConnectivityPreference, ForwardingProfileRegionalAndCustomProxyConnectivityPreferenceArgs

    Name string
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    Enabled bool
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    Name string
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    Enabled bool
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name String
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled Boolean
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name string
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled boolean
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name str
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled bool
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name String
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled Boolean
    Indicates whether this connectivity method is enabled for use in the proxy configuration

    ForwardingProfileRegionalAndCustomProxyPrismaAccessLocation, ForwardingProfileRegionalAndCustomProxyPrismaAccessLocationArgs

    Name string
    One of the region from 'americas', 'europe', 'apac'
    Locations List<string>
    Add list of locations separated by space, in that region
    Name string
    One of the region from 'americas', 'europe', 'apac'
    Locations []string
    Add list of locations separated by space, in that region
    name String
    One of the region from 'americas', 'europe', 'apac'
    locations List<String>
    Add list of locations separated by space, in that region
    name string
    One of the region from 'americas', 'europe', 'apac'
    locations string[]
    Add list of locations separated by space, in that region
    name str
    One of the region from 'americas', 'europe', 'apac'
    locations Sequence[str]
    Add list of locations separated by space, in that region
    name String
    One of the region from 'americas', 'europe', 'apac'
    locations List<String>
    Add list of locations separated by space, in that region

    ForwardingProfileRegionalAndCustomProxyProxy1, ForwardingProfileRegionalAndCustomProxyProxy1Args

    Fqdn string
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    Location string
    Geographic or network location identifier for the primary proxy server
    Port int
    port number for primary proxy
    Fqdn string
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    Location string
    Geographic or network location identifier for the primary proxy server
    Port int
    port number for primary proxy
    fqdn String
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location String
    Geographic or network location identifier for the primary proxy server
    port Integer
    port number for primary proxy
    fqdn string
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location string
    Geographic or network location identifier for the primary proxy server
    port number
    port number for primary proxy
    fqdn str
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location str
    Geographic or network location identifier for the primary proxy server
    port int
    port number for primary proxy
    fqdn String
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location String
    Geographic or network location identifier for the primary proxy server
    port Number
    port number for primary proxy

    ForwardingProfileRegionalAndCustomProxyProxy2, ForwardingProfileRegionalAndCustomProxyProxy2Args

    Fqdn string
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    Location string
    Geographic or network location identifier for the secondary proxy server
    Port int
    port number for secondary proxy
    Fqdn string
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    Location string
    Geographic or network location identifier for the secondary proxy server
    Port int
    port number for secondary proxy
    fqdn String
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location String
    Geographic or network location identifier for the secondary proxy server
    port Integer
    port number for secondary proxy
    fqdn string
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location string
    Geographic or network location identifier for the secondary proxy server
    port number
    port number for secondary proxy
    fqdn str
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location str
    Geographic or network location identifier for the secondary proxy server
    port int
    port number for secondary proxy
    fqdn String
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location String
    Geographic or network location identifier for the secondary proxy server
    port Number
    port number for secondary proxy

    Import

    The following command can be used to import a resource not managed by Terraform:

    $ pulumi import scm:index/forwardingProfileRegionalAndCustomProxy:ForwardingProfileRegionalAndCustomProxy example folder:::id
    

    or

    $ pulumi import scm:index/forwardingProfileRegionalAndCustomProxy:ForwardingProfileRegionalAndCustomProxy example :snippet::id
    

    or

    $ pulumi import scm:index/forwardingProfileRegionalAndCustomProxy:ForwardingProfileRegionalAndCustomProxy example ::device:id
    

    Note: Please provide just one of folder, snippet, or device for the import command.

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

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Viewing docs for Strata Cloud Manager v1.0.6
    published on Saturday, Apr 25, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.