1. Packages
  2. Panos Provider
  3. API Docs
  4. LdapProfile
panos 2.0.2 published on Friday, Jun 6, 2025 by paloaltonetworks

panos.LdapProfile

Explore with Pulumi AI

panos logo
panos 2.0.2 published on Friday, Jun 6, 2025 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    const exampleTemplate = new panos.Template("exampleTemplate", {location: {
        panorama: {},
    }});
    const exampleLdapProfile = new panos.LdapProfile("exampleLdapProfile", {
        location: {
            template: {
                name: exampleTemplate.name,
            },
        },
        base: "dc=example,dc=com",
        bindDn: "cn=admin,dc=example,dc=com",
        bindPassword: "admin_password",
        bindTimelimit: 30,
        disabled: false,
        ldapType: "active-directory",
        retryInterval: 60,
        ssl: true,
        timelimit: 30,
        verifyServerCertificate: true,
        servers: [{
            name: "ADSRV1",
            address: "ldap.example.com",
            port: 389,
        }],
    });
    
    import pulumi
    import pulumi_panos as panos
    
    example_template = panos.Template("exampleTemplate", location={
        "panorama": {},
    })
    example_ldap_profile = panos.LdapProfile("exampleLdapProfile",
        location={
            "template": {
                "name": example_template.name,
            },
        },
        base="dc=example,dc=com",
        bind_dn="cn=admin,dc=example,dc=com",
        bind_password="admin_password",
        bind_timelimit=30,
        disabled=False,
        ldap_type="active-directory",
        retry_interval=60,
        ssl=True,
        timelimit=30,
        verify_server_certificate=True,
        servers=[{
            "name": "ADSRV1",
            "address": "ldap.example.com",
            "port": 389,
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleTemplate, err := panos.NewTemplate(ctx, "exampleTemplate", &panos.TemplateArgs{
    			Location: &panos.TemplateLocationArgs{
    				Panorama: &panos.TemplateLocationPanoramaArgs{},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = panos.NewLdapProfile(ctx, "exampleLdapProfile", &panos.LdapProfileArgs{
    			Location: &panos.LdapProfileLocationArgs{
    				Template: &panos.LdapProfileLocationTemplateArgs{
    					Name: exampleTemplate.Name,
    				},
    			},
    			Base:                    pulumi.String("dc=example,dc=com"),
    			BindDn:                  pulumi.String("cn=admin,dc=example,dc=com"),
    			BindPassword:            pulumi.String("admin_password"),
    			BindTimelimit:           pulumi.Float64(30),
    			Disabled:                pulumi.Bool(false),
    			LdapType:                pulumi.String("active-directory"),
    			RetryInterval:           pulumi.Float64(60),
    			Ssl:                     pulumi.Bool(true),
    			Timelimit:               pulumi.Float64(30),
    			VerifyServerCertificate: pulumi.Bool(true),
    			Servers: panos.LdapProfileServerArray{
    				&panos.LdapProfileServerArgs{
    					Name:    pulumi.String("ADSRV1"),
    					Address: pulumi.String("ldap.example.com"),
    					Port:    pulumi.Float64(389),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Panos = Pulumi.Panos;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleTemplate = new Panos.Template("exampleTemplate", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
        });
    
        var exampleLdapProfile = new Panos.LdapProfile("exampleLdapProfile", new()
        {
            Location = new Panos.Inputs.LdapProfileLocationArgs
            {
                Template = new Panos.Inputs.LdapProfileLocationTemplateArgs
                {
                    Name = exampleTemplate.Name,
                },
            },
            Base = "dc=example,dc=com",
            BindDn = "cn=admin,dc=example,dc=com",
            BindPassword = "admin_password",
            BindTimelimit = 30,
            Disabled = false,
            LdapType = "active-directory",
            RetryInterval = 60,
            Ssl = true,
            Timelimit = 30,
            VerifyServerCertificate = true,
            Servers = new[]
            {
                new Panos.Inputs.LdapProfileServerArgs
                {
                    Name = "ADSRV1",
                    Address = "ldap.example.com",
                    Port = 389,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.panos.Template;
    import com.pulumi.panos.TemplateArgs;
    import com.pulumi.panos.inputs.TemplateLocationArgs;
    import com.pulumi.panos.inputs.TemplateLocationPanoramaArgs;
    import com.pulumi.panos.LdapProfile;
    import com.pulumi.panos.LdapProfileArgs;
    import com.pulumi.panos.inputs.LdapProfileLocationArgs;
    import com.pulumi.panos.inputs.LdapProfileLocationTemplateArgs;
    import com.pulumi.panos.inputs.LdapProfileServerArgs;
    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 exampleTemplate = new Template("exampleTemplate", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama()
                    .build())
                .build());
    
            var exampleLdapProfile = new LdapProfile("exampleLdapProfile", LdapProfileArgs.builder()
                .location(LdapProfileLocationArgs.builder()
                    .template(LdapProfileLocationTemplateArgs.builder()
                        .name(exampleTemplate.name())
                        .build())
                    .build())
                .base("dc=example,dc=com")
                .bindDn("cn=admin,dc=example,dc=com")
                .bindPassword("admin_password")
                .bindTimelimit(30)
                .disabled(false)
                .ldapType("active-directory")
                .retryInterval(60)
                .ssl(true)
                .timelimit(30)
                .verifyServerCertificate(true)
                .servers(LdapProfileServerArgs.builder()
                    .name("ADSRV1")
                    .address("ldap.example.com")
                    .port(389)
                    .build())
                .build());
    
        }
    }
    
    resources:
      exampleTemplate:
        type: panos:Template
        properties:
          location:
            panorama: {}
      exampleLdapProfile:
        type: panos:LdapProfile
        properties:
          location:
            template:
              name: ${exampleTemplate.name}
          base: dc=example,dc=com
          bindDn: cn=admin,dc=example,dc=com
          bindPassword: admin_password
          bindTimelimit: 30
          disabled: false
          ldapType: active-directory
          retryInterval: 60
          ssl: true
          timelimit: 30
          verifyServerCertificate: true
          servers:
            - name: ADSRV1
              address: ldap.example.com
              port: 389
    

    Create LdapProfile Resource

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

    Constructor syntax

    new LdapProfile(name: string, args: LdapProfileArgs, opts?: CustomResourceOptions);
    @overload
    def LdapProfile(resource_name: str,
                    args: LdapProfileArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def LdapProfile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    location: Optional[LdapProfileLocationArgs] = None,
                    bind_timelimit: Optional[float] = None,
                    bind_password: Optional[str] = None,
                    base: Optional[str] = None,
                    disabled: Optional[bool] = None,
                    ldap_type: Optional[str] = None,
                    bind_dn: Optional[str] = None,
                    name: Optional[str] = None,
                    retry_interval: Optional[float] = None,
                    servers: Optional[Sequence[LdapProfileServerArgs]] = None,
                    ssl: Optional[bool] = None,
                    timelimit: Optional[float] = None,
                    verify_server_certificate: Optional[bool] = None)
    func NewLdapProfile(ctx *Context, name string, args LdapProfileArgs, opts ...ResourceOption) (*LdapProfile, error)
    public LdapProfile(string name, LdapProfileArgs args, CustomResourceOptions? opts = null)
    public LdapProfile(String name, LdapProfileArgs args)
    public LdapProfile(String name, LdapProfileArgs args, CustomResourceOptions options)
    
    type: panos:LdapProfile
    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 LdapProfileArgs
    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 LdapProfileArgs
    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 LdapProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LdapProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LdapProfileArgs
    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 ldapProfileResource = new Panos.LdapProfile("ldapProfileResource", new()
    {
        Location = new Panos.Inputs.LdapProfileLocationArgs
        {
            Panorama = null,
            Shared = null,
            Template = new Panos.Inputs.LdapProfileLocationTemplateArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.LdapProfileLocationTemplateStackArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStackVsys = new Panos.Inputs.LdapProfileLocationTemplateStackVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                TemplateStack = "string",
                Vsys = "string",
            },
            TemplateVsys = new Panos.Inputs.LdapProfileLocationTemplateVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                Template = "string",
                Vsys = "string",
            },
            Vsys = new Panos.Inputs.LdapProfileLocationVsysArgs
            {
                Name = "string",
                NgfwDevice = "string",
            },
        },
        BindTimelimit = 0,
        BindPassword = "string",
        Base = "string",
        Disabled = false,
        LdapType = "string",
        BindDn = "string",
        Name = "string",
        RetryInterval = 0,
        Servers = new[]
        {
            new Panos.Inputs.LdapProfileServerArgs
            {
                Name = "string",
                Address = "string",
                Port = 0,
            },
        },
        Ssl = false,
        Timelimit = 0,
        VerifyServerCertificate = false,
    });
    
    example, err := panos.NewLdapProfile(ctx, "ldapProfileResource", &panos.LdapProfileArgs{
    	Location: &panos.LdapProfileLocationArgs{
    		Panorama: &panos.LdapProfileLocationPanoramaArgs{},
    		Shared:   &panos.LdapProfileLocationSharedArgs{},
    		Template: &panos.LdapProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.LdapProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStackVsys: &panos.LdapProfileLocationTemplateStackVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			TemplateStack:  pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		TemplateVsys: &panos.LdapProfileLocationTemplateVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			Template:       pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		Vsys: &panos.LdapProfileLocationVsysArgs{
    			Name:       pulumi.String("string"),
    			NgfwDevice: pulumi.String("string"),
    		},
    	},
    	BindTimelimit: pulumi.Float64(0),
    	BindPassword:  pulumi.String("string"),
    	Base:          pulumi.String("string"),
    	Disabled:      pulumi.Bool(false),
    	LdapType:      pulumi.String("string"),
    	BindDn:        pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	RetryInterval: pulumi.Float64(0),
    	Servers: panos.LdapProfileServerArray{
    		&panos.LdapProfileServerArgs{
    			Name:    pulumi.String("string"),
    			Address: pulumi.String("string"),
    			Port:    pulumi.Float64(0),
    		},
    	},
    	Ssl:                     pulumi.Bool(false),
    	Timelimit:               pulumi.Float64(0),
    	VerifyServerCertificate: pulumi.Bool(false),
    })
    
    var ldapProfileResource = new LdapProfile("ldapProfileResource", LdapProfileArgs.builder()
        .location(LdapProfileLocationArgs.builder()
            .panorama(LdapProfileLocationPanoramaArgs.builder()
                .build())
            .shared(LdapProfileLocationSharedArgs.builder()
                .build())
            .template(LdapProfileLocationTemplateArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStack(LdapProfileLocationTemplateStackArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStackVsys(LdapProfileLocationTemplateStackVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .templateStack("string")
                .vsys("string")
                .build())
            .templateVsys(LdapProfileLocationTemplateVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .template("string")
                .vsys("string")
                .build())
            .vsys(LdapProfileLocationVsysArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .build())
            .build())
        .bindTimelimit(0.0)
        .bindPassword("string")
        .base("string")
        .disabled(false)
        .ldapType("string")
        .bindDn("string")
        .name("string")
        .retryInterval(0.0)
        .servers(LdapProfileServerArgs.builder()
            .name("string")
            .address("string")
            .port(0.0)
            .build())
        .ssl(false)
        .timelimit(0.0)
        .verifyServerCertificate(false)
        .build());
    
    ldap_profile_resource = panos.LdapProfile("ldapProfileResource",
        location={
            "panorama": {},
            "shared": {},
            "template": {
                "name": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "panorama_device": "string",
            },
            "template_stack_vsys": {
                "ngfw_device": "string",
                "panorama_device": "string",
                "template_stack": "string",
                "vsys": "string",
            },
            "template_vsys": {
                "ngfw_device": "string",
                "panorama_device": "string",
                "template": "string",
                "vsys": "string",
            },
            "vsys": {
                "name": "string",
                "ngfw_device": "string",
            },
        },
        bind_timelimit=0,
        bind_password="string",
        base="string",
        disabled=False,
        ldap_type="string",
        bind_dn="string",
        name="string",
        retry_interval=0,
        servers=[{
            "name": "string",
            "address": "string",
            "port": 0,
        }],
        ssl=False,
        timelimit=0,
        verify_server_certificate=False)
    
    const ldapProfileResource = new panos.LdapProfile("ldapProfileResource", {
        location: {
            panorama: {},
            shared: {},
            template: {
                name: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                panoramaDevice: "string",
            },
            templateStackVsys: {
                ngfwDevice: "string",
                panoramaDevice: "string",
                templateStack: "string",
                vsys: "string",
            },
            templateVsys: {
                ngfwDevice: "string",
                panoramaDevice: "string",
                template: "string",
                vsys: "string",
            },
            vsys: {
                name: "string",
                ngfwDevice: "string",
            },
        },
        bindTimelimit: 0,
        bindPassword: "string",
        base: "string",
        disabled: false,
        ldapType: "string",
        bindDn: "string",
        name: "string",
        retryInterval: 0,
        servers: [{
            name: "string",
            address: "string",
            port: 0,
        }],
        ssl: false,
        timelimit: 0,
        verifyServerCertificate: false,
    });
    
    type: panos:LdapProfile
    properties:
        base: string
        bindDn: string
        bindPassword: string
        bindTimelimit: 0
        disabled: false
        ldapType: string
        location:
            panorama: {}
            shared: {}
            template:
                name: string
                panoramaDevice: string
            templateStack:
                name: string
                panoramaDevice: string
            templateStackVsys:
                ngfwDevice: string
                panoramaDevice: string
                templateStack: string
                vsys: string
            templateVsys:
                ngfwDevice: string
                panoramaDevice: string
                template: string
                vsys: string
            vsys:
                name: string
                ngfwDevice: string
        name: string
        retryInterval: 0
        servers:
            - address: string
              name: string
              port: 0
        ssl: false
        timelimit: 0
        verifyServerCertificate: false
    

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

    Location LdapProfileLocation
    The location of this object.
    Base string
    Default base distinguished name (DN) to use for searches
    BindDn string
    bind distinguished name
    BindPassword string
    bind password
    BindTimelimit double
    number of seconds to use for connecting to servers
    Disabled bool
    LdapType string
    Name string
    RetryInterval double
    Interval (seconds) for reconnecting LDAP server
    Servers List<LdapProfileServer>
    Ssl bool
    Timelimit double
    number of seconds to wait for performing searches
    VerifyServerCertificate bool
    Verify server certificate for SSL sessions
    Location LdapProfileLocationArgs
    The location of this object.
    Base string
    Default base distinguished name (DN) to use for searches
    BindDn string
    bind distinguished name
    BindPassword string
    bind password
    BindTimelimit float64
    number of seconds to use for connecting to servers
    Disabled bool
    LdapType string
    Name string
    RetryInterval float64
    Interval (seconds) for reconnecting LDAP server
    Servers []LdapProfileServerArgs
    Ssl bool
    Timelimit float64
    number of seconds to wait for performing searches
    VerifyServerCertificate bool
    Verify server certificate for SSL sessions
    location LdapProfileLocation
    The location of this object.
    base String
    Default base distinguished name (DN) to use for searches
    bindDn String
    bind distinguished name
    bindPassword String
    bind password
    bindTimelimit Double
    number of seconds to use for connecting to servers
    disabled Boolean
    ldapType String
    name String
    retryInterval Double
    Interval (seconds) for reconnecting LDAP server
    servers List<LdapProfileServer>
    ssl Boolean
    timelimit Double
    number of seconds to wait for performing searches
    verifyServerCertificate Boolean
    Verify server certificate for SSL sessions
    location LdapProfileLocation
    The location of this object.
    base string
    Default base distinguished name (DN) to use for searches
    bindDn string
    bind distinguished name
    bindPassword string
    bind password
    bindTimelimit number
    number of seconds to use for connecting to servers
    disabled boolean
    ldapType string
    name string
    retryInterval number
    Interval (seconds) for reconnecting LDAP server
    servers LdapProfileServer[]
    ssl boolean
    timelimit number
    number of seconds to wait for performing searches
    verifyServerCertificate boolean
    Verify server certificate for SSL sessions
    location LdapProfileLocationArgs
    The location of this object.
    base str
    Default base distinguished name (DN) to use for searches
    bind_dn str
    bind distinguished name
    bind_password str
    bind password
    bind_timelimit float
    number of seconds to use for connecting to servers
    disabled bool
    ldap_type str
    name str
    retry_interval float
    Interval (seconds) for reconnecting LDAP server
    servers Sequence[LdapProfileServerArgs]
    ssl bool
    timelimit float
    number of seconds to wait for performing searches
    verify_server_certificate bool
    Verify server certificate for SSL sessions
    location Property Map
    The location of this object.
    base String
    Default base distinguished name (DN) to use for searches
    bindDn String
    bind distinguished name
    bindPassword String
    bind password
    bindTimelimit Number
    number of seconds to use for connecting to servers
    disabled Boolean
    ldapType String
    name String
    retryInterval Number
    Interval (seconds) for reconnecting LDAP server
    servers List<Property Map>
    ssl Boolean
    timelimit Number
    number of seconds to wait for performing searches
    verifyServerCertificate Boolean
    Verify server certificate for SSL sessions

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LdapProfile 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 LdapProfile Resource

    Get an existing LdapProfile 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?: LdapProfileState, opts?: CustomResourceOptions): LdapProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            base: Optional[str] = None,
            bind_dn: Optional[str] = None,
            bind_password: Optional[str] = None,
            bind_timelimit: Optional[float] = None,
            disabled: Optional[bool] = None,
            ldap_type: Optional[str] = None,
            location: Optional[LdapProfileLocationArgs] = None,
            name: Optional[str] = None,
            retry_interval: Optional[float] = None,
            servers: Optional[Sequence[LdapProfileServerArgs]] = None,
            ssl: Optional[bool] = None,
            timelimit: Optional[float] = None,
            verify_server_certificate: Optional[bool] = None) -> LdapProfile
    func GetLdapProfile(ctx *Context, name string, id IDInput, state *LdapProfileState, opts ...ResourceOption) (*LdapProfile, error)
    public static LdapProfile Get(string name, Input<string> id, LdapProfileState? state, CustomResourceOptions? opts = null)
    public static LdapProfile get(String name, Output<String> id, LdapProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:LdapProfile    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:
    Base string
    Default base distinguished name (DN) to use for searches
    BindDn string
    bind distinguished name
    BindPassword string
    bind password
    BindTimelimit double
    number of seconds to use for connecting to servers
    Disabled bool
    LdapType string
    Location LdapProfileLocation
    The location of this object.
    Name string
    RetryInterval double
    Interval (seconds) for reconnecting LDAP server
    Servers List<LdapProfileServer>
    Ssl bool
    Timelimit double
    number of seconds to wait for performing searches
    VerifyServerCertificate bool
    Verify server certificate for SSL sessions
    Base string
    Default base distinguished name (DN) to use for searches
    BindDn string
    bind distinguished name
    BindPassword string
    bind password
    BindTimelimit float64
    number of seconds to use for connecting to servers
    Disabled bool
    LdapType string
    Location LdapProfileLocationArgs
    The location of this object.
    Name string
    RetryInterval float64
    Interval (seconds) for reconnecting LDAP server
    Servers []LdapProfileServerArgs
    Ssl bool
    Timelimit float64
    number of seconds to wait for performing searches
    VerifyServerCertificate bool
    Verify server certificate for SSL sessions
    base String
    Default base distinguished name (DN) to use for searches
    bindDn String
    bind distinguished name
    bindPassword String
    bind password
    bindTimelimit Double
    number of seconds to use for connecting to servers
    disabled Boolean
    ldapType String
    location LdapProfileLocation
    The location of this object.
    name String
    retryInterval Double
    Interval (seconds) for reconnecting LDAP server
    servers List<LdapProfileServer>
    ssl Boolean
    timelimit Double
    number of seconds to wait for performing searches
    verifyServerCertificate Boolean
    Verify server certificate for SSL sessions
    base string
    Default base distinguished name (DN) to use for searches
    bindDn string
    bind distinguished name
    bindPassword string
    bind password
    bindTimelimit number
    number of seconds to use for connecting to servers
    disabled boolean
    ldapType string
    location LdapProfileLocation
    The location of this object.
    name string
    retryInterval number
    Interval (seconds) for reconnecting LDAP server
    servers LdapProfileServer[]
    ssl boolean
    timelimit number
    number of seconds to wait for performing searches
    verifyServerCertificate boolean
    Verify server certificate for SSL sessions
    base str
    Default base distinguished name (DN) to use for searches
    bind_dn str
    bind distinguished name
    bind_password str
    bind password
    bind_timelimit float
    number of seconds to use for connecting to servers
    disabled bool
    ldap_type str
    location LdapProfileLocationArgs
    The location of this object.
    name str
    retry_interval float
    Interval (seconds) for reconnecting LDAP server
    servers Sequence[LdapProfileServerArgs]
    ssl bool
    timelimit float
    number of seconds to wait for performing searches
    verify_server_certificate bool
    Verify server certificate for SSL sessions
    base String
    Default base distinguished name (DN) to use for searches
    bindDn String
    bind distinguished name
    bindPassword String
    bind password
    bindTimelimit Number
    number of seconds to use for connecting to servers
    disabled Boolean
    ldapType String
    location Property Map
    The location of this object.
    name String
    retryInterval Number
    Interval (seconds) for reconnecting LDAP server
    servers List<Property Map>
    ssl Boolean
    timelimit Number
    number of seconds to wait for performing searches
    verifyServerCertificate Boolean
    Verify server certificate for SSL sessions

    Supporting Types

    LdapProfileLocation, LdapProfileLocationArgs

    Panorama LdapProfileLocationPanorama
    Located in a panorama.
    Shared LdapProfileLocationShared
    Panorama shared object
    Template LdapProfileLocationTemplate
    Located in a specific template
    TemplateStack LdapProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys LdapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys LdapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys LdapProfileLocationVsys
    Located in a specific Virtual System
    Panorama LdapProfileLocationPanorama
    Located in a panorama.
    Shared LdapProfileLocationShared
    Panorama shared object
    Template LdapProfileLocationTemplate
    Located in a specific template
    TemplateStack LdapProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys LdapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys LdapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys LdapProfileLocationVsys
    Located in a specific Virtual System
    panorama LdapProfileLocationPanorama
    Located in a panorama.
    shared LdapProfileLocationShared
    Panorama shared object
    template LdapProfileLocationTemplate
    Located in a specific template
    templateStack LdapProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys LdapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys LdapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys LdapProfileLocationVsys
    Located in a specific Virtual System
    panorama LdapProfileLocationPanorama
    Located in a panorama.
    shared LdapProfileLocationShared
    Panorama shared object
    template LdapProfileLocationTemplate
    Located in a specific template
    templateStack LdapProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys LdapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys LdapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys LdapProfileLocationVsys
    Located in a specific Virtual System
    panorama LdapProfileLocationPanorama
    Located in a panorama.
    shared LdapProfileLocationShared
    Panorama shared object
    template LdapProfileLocationTemplate
    Located in a specific template
    template_stack LdapProfileLocationTemplateStack
    Located in a specific template
    template_stack_vsys LdapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    template_vsys LdapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys LdapProfileLocationVsys
    Located in a specific Virtual System
    panorama Property Map
    Located in a panorama.
    shared Property Map
    Panorama shared object
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template
    templateStackVsys Property Map
    Located in a specific template, device and vsys.
    templateVsys Property Map
    Located in a specific template, device and vsys.
    vsys Property Map
    Located in a specific Virtual System

    LdapProfileLocationTemplate, LdapProfileLocationTemplateArgs

    Name string
    Specific Panorama template
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    panoramaDevice String
    Specific Panorama device

    LdapProfileLocationTemplateStack, LdapProfileLocationTemplateStackArgs

    Name string
    The template stack
    PanoramaDevice string
    Specific Panorama device
    Name string
    The template stack
    PanoramaDevice string
    Specific Panorama device
    name String
    The template stack
    panoramaDevice String
    Specific Panorama device
    name string
    The template stack
    panoramaDevice string
    Specific Panorama device
    name str
    The template stack
    panorama_device str
    Specific Panorama device
    name String
    The template stack
    panoramaDevice String
    Specific Panorama device

    LdapProfileLocationTemplateStackVsys, LdapProfileLocationTemplateStackVsysArgs

    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    TemplateStack string
    The template stack
    Vsys string
    The vsys.
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    TemplateStack string
    The template stack
    Vsys string
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    templateStack String
    The template stack
    vsys String
    The vsys.
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    templateStack string
    The template stack
    vsys string
    The vsys.
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    template_stack str
    The template stack
    vsys str
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    templateStack String
    The template stack
    vsys String
    The vsys.

    LdapProfileLocationTemplateVsys, LdapProfileLocationTemplateVsysArgs

    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Template string
    Specific Panorama template
    Vsys string
    The vsys.
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Template string
    Specific Panorama template
    Vsys string
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    template String
    Specific Panorama template
    vsys String
    The vsys.
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    template string
    Specific Panorama template
    vsys string
    The vsys.
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    template str
    Specific Panorama template
    vsys str
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    template String
    Specific Panorama template
    vsys String
    The vsys.

    LdapProfileLocationVsys, LdapProfileLocationVsysArgs

    Name string
    The Virtual System name
    NgfwDevice string
    The NGFW device name
    Name string
    The Virtual System name
    NgfwDevice string
    The NGFW device name
    name String
    The Virtual System name
    ngfwDevice String
    The NGFW device name
    name string
    The Virtual System name
    ngfwDevice string
    The NGFW device name
    name str
    The Virtual System name
    ngfw_device str
    The NGFW device name
    name String
    The Virtual System name
    ngfwDevice String
    The NGFW device name

    LdapProfileServer, LdapProfileServerArgs

    Name string
    Address string
    ldap server ip or host name.
    Port double
    default 389 for LDAP, 636 for LDAPS
    Name string
    Address string
    ldap server ip or host name.
    Port float64
    default 389 for LDAP, 636 for LDAPS
    name String
    address String
    ldap server ip or host name.
    port Double
    default 389 for LDAP, 636 for LDAPS
    name string
    address string
    ldap server ip or host name.
    port number
    default 389 for LDAP, 636 for LDAPS
    name str
    address str
    ldap server ip or host name.
    port float
    default 389 for LDAP, 636 for LDAPS
    name String
    address String
    ldap server ip or host name.
    port Number
    default 389 for LDAP, 636 for LDAPS

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    panos logo
    panos 2.0.2 published on Friday, Jun 6, 2025 by paloaltonetworks