panos.LdapProfile
Explore with Pulumi AI
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
Ldap
Profile Location - The location of this object.
- Base string
- Default base distinguished name (DN) to use for searches
- Bind
Dn string - bind distinguished name
- Bind
Password string - bind password
- Bind
Timelimit double - number of seconds to use for connecting to servers
- Disabled bool
- Ldap
Type string - Name string
- Retry
Interval double - Interval (seconds) for reconnecting LDAP server
- Servers
List<Ldap
Profile Server> - Ssl bool
- Timelimit double
- number of seconds to wait for performing searches
- Verify
Server boolCertificate - Verify server certificate for SSL sessions
- Location
Ldap
Profile Location Args - The location of this object.
- Base string
- Default base distinguished name (DN) to use for searches
- Bind
Dn string - bind distinguished name
- Bind
Password string - bind password
- Bind
Timelimit float64 - number of seconds to use for connecting to servers
- Disabled bool
- Ldap
Type string - Name string
- Retry
Interval float64 - Interval (seconds) for reconnecting LDAP server
- Servers
[]Ldap
Profile Server Args - Ssl bool
- Timelimit float64
- number of seconds to wait for performing searches
- Verify
Server boolCertificate - Verify server certificate for SSL sessions
- location
Ldap
Profile Location - The location of this object.
- base String
- Default base distinguished name (DN) to use for searches
- bind
Dn String - bind distinguished name
- bind
Password String - bind password
- bind
Timelimit Double - number of seconds to use for connecting to servers
- disabled Boolean
- ldap
Type String - name String
- retry
Interval Double - Interval (seconds) for reconnecting LDAP server
- servers
List<Ldap
Profile Server> - ssl Boolean
- timelimit Double
- number of seconds to wait for performing searches
- verify
Server BooleanCertificate - Verify server certificate for SSL sessions
- location
Ldap
Profile Location - The location of this object.
- base string
- Default base distinguished name (DN) to use for searches
- bind
Dn string - bind distinguished name
- bind
Password string - bind password
- bind
Timelimit number - number of seconds to use for connecting to servers
- disabled boolean
- ldap
Type string - name string
- retry
Interval number - Interval (seconds) for reconnecting LDAP server
- servers
Ldap
Profile Server[] - ssl boolean
- timelimit number
- number of seconds to wait for performing searches
- verify
Server booleanCertificate - Verify server certificate for SSL sessions
- location
Ldap
Profile Location Args - 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[Ldap
Profile Server Args] - ssl bool
- timelimit float
- number of seconds to wait for performing searches
- verify_
server_ boolcertificate - 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
- bind
Dn String - bind distinguished name
- bind
Password String - bind password
- bind
Timelimit Number - number of seconds to use for connecting to servers
- disabled Boolean
- ldap
Type String - name String
- retry
Interval Number - Interval (seconds) for reconnecting LDAP server
- servers List<Property Map>
- ssl Boolean
- timelimit Number
- number of seconds to wait for performing searches
- verify
Server BooleanCertificate - 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.
- Base string
- Default base distinguished name (DN) to use for searches
- Bind
Dn string - bind distinguished name
- Bind
Password string - bind password
- Bind
Timelimit double - number of seconds to use for connecting to servers
- Disabled bool
- Ldap
Type string - Location
Ldap
Profile Location - The location of this object.
- Name string
- Retry
Interval double - Interval (seconds) for reconnecting LDAP server
- Servers
List<Ldap
Profile Server> - Ssl bool
- Timelimit double
- number of seconds to wait for performing searches
- Verify
Server boolCertificate - Verify server certificate for SSL sessions
- Base string
- Default base distinguished name (DN) to use for searches
- Bind
Dn string - bind distinguished name
- Bind
Password string - bind password
- Bind
Timelimit float64 - number of seconds to use for connecting to servers
- Disabled bool
- Ldap
Type string - Location
Ldap
Profile Location Args - The location of this object.
- Name string
- Retry
Interval float64 - Interval (seconds) for reconnecting LDAP server
- Servers
[]Ldap
Profile Server Args - Ssl bool
- Timelimit float64
- number of seconds to wait for performing searches
- Verify
Server boolCertificate - Verify server certificate for SSL sessions
- base String
- Default base distinguished name (DN) to use for searches
- bind
Dn String - bind distinguished name
- bind
Password String - bind password
- bind
Timelimit Double - number of seconds to use for connecting to servers
- disabled Boolean
- ldap
Type String - location
Ldap
Profile Location - The location of this object.
- name String
- retry
Interval Double - Interval (seconds) for reconnecting LDAP server
- servers
List<Ldap
Profile Server> - ssl Boolean
- timelimit Double
- number of seconds to wait for performing searches
- verify
Server BooleanCertificate - Verify server certificate for SSL sessions
- base string
- Default base distinguished name (DN) to use for searches
- bind
Dn string - bind distinguished name
- bind
Password string - bind password
- bind
Timelimit number - number of seconds to use for connecting to servers
- disabled boolean
- ldap
Type string - location
Ldap
Profile Location - The location of this object.
- name string
- retry
Interval number - Interval (seconds) for reconnecting LDAP server
- servers
Ldap
Profile Server[] - ssl boolean
- timelimit number
- number of seconds to wait for performing searches
- verify
Server booleanCertificate - 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
Ldap
Profile Location Args - The location of this object.
- name str
- retry_
interval float - Interval (seconds) for reconnecting LDAP server
- servers
Sequence[Ldap
Profile Server Args] - ssl bool
- timelimit float
- number of seconds to wait for performing searches
- verify_
server_ boolcertificate - Verify server certificate for SSL sessions
- base String
- Default base distinguished name (DN) to use for searches
- bind
Dn String - bind distinguished name
- bind
Password String - bind password
- bind
Timelimit Number - number of seconds to use for connecting to servers
- disabled Boolean
- ldap
Type String - location Property Map
- The location of this object.
- name String
- retry
Interval Number - Interval (seconds) for reconnecting LDAP server
- servers List<Property Map>
- ssl Boolean
- timelimit Number
- number of seconds to wait for performing searches
- verify
Server BooleanCertificate - Verify server certificate for SSL sessions
Supporting Types
LdapProfileLocation, LdapProfileLocationArgs
- Panorama
Ldap
Profile Location Panorama - Located in a panorama.
- Ldap
Profile Location Shared - Panorama shared object
- Template
Ldap
Profile Location Template - Located in a specific template
- Template
Stack LdapProfile Location Template Stack - Located in a specific template
- Template
Stack LdapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys LdapProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Ldap
Profile Location Vsys - Located in a specific Virtual System
- Panorama
Ldap
Profile Location Panorama - Located in a panorama.
- Ldap
Profile Location Shared - Panorama shared object
- Template
Ldap
Profile Location Template - Located in a specific template
- Template
Stack LdapProfile Location Template Stack - Located in a specific template
- Template
Stack LdapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys LdapProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Ldap
Profile Location Vsys - Located in a specific Virtual System
- panorama
Ldap
Profile Location Panorama - Located in a panorama.
- Ldap
Profile Location Shared - Panorama shared object
- template
Ldap
Profile Location Template - Located in a specific template
- template
Stack LdapProfile Location Template Stack - Located in a specific template
- template
Stack LdapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys LdapProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Ldap
Profile Location Vsys - Located in a specific Virtual System
- panorama
Ldap
Profile Location Panorama - Located in a panorama.
- Ldap
Profile Location Shared - Panorama shared object
- template
Ldap
Profile Location Template - Located in a specific template
- template
Stack LdapProfile Location Template Stack - Located in a specific template
- template
Stack LdapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys LdapProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Ldap
Profile Location Vsys - Located in a specific Virtual System
- panorama
Ldap
Profile Location Panorama - Located in a panorama.
- Ldap
Profile Location Shared - Panorama shared object
- template
Ldap
Profile Location Template - Located in a specific template
- template_
stack LdapProfile Location Template Stack - Located in a specific template
- template_
stack_ Ldapvsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys LdapProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Ldap
Profile Location Vsys - Located in a specific Virtual System
- panorama Property Map
- Located in a panorama.
- Property Map
- Panorama shared object
- template Property Map
- Located in a specific template
- template
Stack Property Map - Located in a specific template
- template
Stack Property MapVsys - Located in a specific template, device and vsys.
- template
Vsys 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
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
LdapProfileLocationTemplateStack, LdapProfileLocationTemplateStackArgs
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
- name string
- The template stack
- panorama
Device string - Specific Panorama device
- name str
- The template stack
- panorama_
device str - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
LdapProfileLocationTemplateStackVsys, LdapProfileLocationTemplateStackVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template
Stack 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.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
LdapProfileLocationTemplateVsys, LdapProfileLocationTemplateVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device 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.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
LdapProfileLocationVsys, LdapProfileLocationVsysArgs
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
- name string
- The Virtual System name
- ngfw
Device string - The NGFW device name
- name str
- The Virtual System name
- ngfw_
device str - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
LdapProfileServer, LdapProfileServerArgs
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panos
Terraform Provider.