ise.identitymanagement.ActiveDirectoryJoinPoint
Explore with Pulumi AI
This resource can manage an Active Directory Join Point.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.identitymanagement.ActiveDirectoryJoinPoint;
import com.pulumi.ise.identitymanagement.ActiveDirectoryJoinPointArgs;
import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinPointGroupArgs;
import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinPointAttributeArgs;
import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinPointRewriteRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ActiveDirectoryJoinPoint("example", ActiveDirectoryJoinPointArgs.builder()
.name("cisco.local")
.description("My AD join point")
.domain("cisco.local")
.adScopesNames("Default_Scope")
.enableDomainAllowedList(true)
.groups(ActiveDirectoryJoinPointGroupArgs.builder()
.name("cisco.local/operators")
.sid("S-1-5-32-548")
.type("GLOBAL")
.build())
.attributes(ActiveDirectoryJoinPointAttributeArgs.builder()
.name("Attribute_1")
.type("STRING")
.internal_name("internal_name")
.default_value("default_string")
.build())
.rewriteRules(ActiveDirectoryJoinPointRewriteRuleArgs.builder()
.row_id("0")
.rewrite_match("rewrite_match")
.rewrite_result("rewrite_result")
.build())
.enableRewrites(false)
.enablePassChange(true)
.enableMachineAuth(true)
.enableMachineAccess(true)
.enableDialinPermissionCheck(false)
.plaintextAuth(false)
.agingTime(5)
.enableCallbackForDialinClient(false)
.identityNotInAdBehaviour("SEARCH_JOINED_FOREST")
.unreachableDomainsBehaviour("PROCEED")
.schema("ACTIVE_DIRECTORY")
.firstName("givenName")
.department("department")
.lastName("sn")
.organizationalUnit("company")
.jobTitle("title")
.locality("l")
.email("mail")
.stateOrProvince("st")
.telephone("telephoneNumber")
.country("co")
.streetAddress("streetAddress")
.enableFailedAuthProtection(false)
.failedAuthThreshold(5)
.authProtectionType("WIRELESS")
.build());
}
}
resources:
example:
type: ise:identitymanagement:ActiveDirectoryJoinPoint
properties:
name: cisco.local
description: My AD join point
domain: cisco.local
adScopesNames: Default_Scope
enableDomainAllowedList: true
groups:
- name: cisco.local/operators
sid: S-1-5-32-548
type: GLOBAL
attributes:
- name: Attribute_1
type: STRING
internal_name: internal_name
default_value: default_string
rewriteRules:
- row_id: '0'
rewrite_match: rewrite_match
rewrite_result: rewrite_result
enableRewrites: false
enablePassChange: true
enableMachineAuth: true
enableMachineAccess: true
enableDialinPermissionCheck: false
plaintextAuth: false
agingTime: 5
enableCallbackForDialinClient: false
identityNotInAdBehaviour: SEARCH_JOINED_FOREST
unreachableDomainsBehaviour: PROCEED
schema: ACTIVE_DIRECTORY
firstName: givenName
department: department
lastName: sn
organizationalUnit: company
jobTitle: title
locality: l
email: mail
stateOrProvince: st
telephone: telephoneNumber
country: co
streetAddress: streetAddress
enableFailedAuthProtection: false
failedAuthThreshold: 5
authProtectionType: WIRELESS
Create ActiveDirectoryJoinPoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ActiveDirectoryJoinPoint(name: string, args: ActiveDirectoryJoinPointArgs, opts?: CustomResourceOptions);
@overload
def ActiveDirectoryJoinPoint(resource_name: str,
args: ActiveDirectoryJoinPointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ActiveDirectoryJoinPoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
domain: Optional[str] = None,
enable_rewrites: Optional[bool] = None,
street_address: Optional[str] = None,
auth_protection_type: Optional[str] = None,
country: Optional[str] = None,
department: Optional[str] = None,
description: Optional[str] = None,
failed_auth_threshold: Optional[int] = None,
email: Optional[str] = None,
enable_callback_for_dialin_client: Optional[bool] = None,
enable_dialin_permission_check: Optional[bool] = None,
enable_domain_allowed_list: Optional[bool] = None,
enable_failed_auth_protection: Optional[bool] = None,
enable_machine_access: Optional[bool] = None,
enable_machine_auth: Optional[bool] = None,
unreachable_domains_behaviour: Optional[str] = None,
attributes: Optional[Sequence[ActiveDirectoryJoinPointAttributeArgs]] = None,
aging_time: Optional[int] = None,
first_name: Optional[str] = None,
groups: Optional[Sequence[ActiveDirectoryJoinPointGroupArgs]] = None,
identity_not_in_ad_behaviour: Optional[str] = None,
job_title: Optional[str] = None,
last_name: Optional[str] = None,
locality: Optional[str] = None,
name: Optional[str] = None,
organizational_unit: Optional[str] = None,
plaintext_auth: Optional[bool] = None,
rewrite_rules: Optional[Sequence[ActiveDirectoryJoinPointRewriteRuleArgs]] = None,
schema: Optional[str] = None,
state_or_province: Optional[str] = None,
ad_scopes_names: Optional[str] = None,
telephone: Optional[str] = None,
enable_pass_change: Optional[bool] = None)
func NewActiveDirectoryJoinPoint(ctx *Context, name string, args ActiveDirectoryJoinPointArgs, opts ...ResourceOption) (*ActiveDirectoryJoinPoint, error)
public ActiveDirectoryJoinPoint(string name, ActiveDirectoryJoinPointArgs args, CustomResourceOptions? opts = null)
public ActiveDirectoryJoinPoint(String name, ActiveDirectoryJoinPointArgs args)
public ActiveDirectoryJoinPoint(String name, ActiveDirectoryJoinPointArgs args, CustomResourceOptions options)
type: ise:identitymanagement:ActiveDirectoryJoinPoint
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 ActiveDirectoryJoinPointArgs
- 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 ActiveDirectoryJoinPointArgs
- 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 ActiveDirectoryJoinPointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActiveDirectoryJoinPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActiveDirectoryJoinPointArgs
- 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 activeDirectoryJoinPointResource = new Ise.IdentityManagement.ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource", new()
{
Domain = "string",
EnableRewrites = false,
StreetAddress = "string",
AuthProtectionType = "string",
Country = "string",
Department = "string",
Description = "string",
FailedAuthThreshold = 0,
Email = "string",
EnableCallbackForDialinClient = false,
EnableDialinPermissionCheck = false,
EnableDomainAllowedList = false,
EnableFailedAuthProtection = false,
EnableMachineAccess = false,
EnableMachineAuth = false,
UnreachableDomainsBehaviour = "string",
Attributes = new[]
{
new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinPointAttributeArgs
{
DefaultValue = "string",
InternalName = "string",
Name = "string",
Type = "string",
},
},
AgingTime = 0,
FirstName = "string",
Groups = new[]
{
new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinPointGroupArgs
{
Name = "string",
Sid = "string",
Type = "string",
},
},
IdentityNotInAdBehaviour = "string",
JobTitle = "string",
LastName = "string",
Locality = "string",
Name = "string",
OrganizationalUnit = "string",
PlaintextAuth = false,
RewriteRules = new[]
{
new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinPointRewriteRuleArgs
{
RewriteMatch = "string",
RewriteResult = "string",
RowId = "string",
},
},
Schema = "string",
StateOrProvince = "string",
AdScopesNames = "string",
Telephone = "string",
EnablePassChange = false,
});
example, err := identitymanagement.NewActiveDirectoryJoinPoint(ctx, "activeDirectoryJoinPointResource", &identitymanagement.ActiveDirectoryJoinPointArgs{
Domain: pulumi.String("string"),
EnableRewrites: pulumi.Bool(false),
StreetAddress: pulumi.String("string"),
AuthProtectionType: pulumi.String("string"),
Country: pulumi.String("string"),
Department: pulumi.String("string"),
Description: pulumi.String("string"),
FailedAuthThreshold: pulumi.Int(0),
Email: pulumi.String("string"),
EnableCallbackForDialinClient: pulumi.Bool(false),
EnableDialinPermissionCheck: pulumi.Bool(false),
EnableDomainAllowedList: pulumi.Bool(false),
EnableFailedAuthProtection: pulumi.Bool(false),
EnableMachineAccess: pulumi.Bool(false),
EnableMachineAuth: pulumi.Bool(false),
UnreachableDomainsBehaviour: pulumi.String("string"),
Attributes: identitymanagement.ActiveDirectoryJoinPointAttributeArray{
&identitymanagement.ActiveDirectoryJoinPointAttributeArgs{
DefaultValue: pulumi.String("string"),
InternalName: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
AgingTime: pulumi.Int(0),
FirstName: pulumi.String("string"),
Groups: identitymanagement.ActiveDirectoryJoinPointGroupArray{
&identitymanagement.ActiveDirectoryJoinPointGroupArgs{
Name: pulumi.String("string"),
Sid: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
IdentityNotInAdBehaviour: pulumi.String("string"),
JobTitle: pulumi.String("string"),
LastName: pulumi.String("string"),
Locality: pulumi.String("string"),
Name: pulumi.String("string"),
OrganizationalUnit: pulumi.String("string"),
PlaintextAuth: pulumi.Bool(false),
RewriteRules: identitymanagement.ActiveDirectoryJoinPointRewriteRuleArray{
&identitymanagement.ActiveDirectoryJoinPointRewriteRuleArgs{
RewriteMatch: pulumi.String("string"),
RewriteResult: pulumi.String("string"),
RowId: pulumi.String("string"),
},
},
Schema: pulumi.String("string"),
StateOrProvince: pulumi.String("string"),
AdScopesNames: pulumi.String("string"),
Telephone: pulumi.String("string"),
EnablePassChange: pulumi.Bool(false),
})
var activeDirectoryJoinPointResource = new ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource", ActiveDirectoryJoinPointArgs.builder()
.domain("string")
.enableRewrites(false)
.streetAddress("string")
.authProtectionType("string")
.country("string")
.department("string")
.description("string")
.failedAuthThreshold(0)
.email("string")
.enableCallbackForDialinClient(false)
.enableDialinPermissionCheck(false)
.enableDomainAllowedList(false)
.enableFailedAuthProtection(false)
.enableMachineAccess(false)
.enableMachineAuth(false)
.unreachableDomainsBehaviour("string")
.attributes(ActiveDirectoryJoinPointAttributeArgs.builder()
.defaultValue("string")
.internalName("string")
.name("string")
.type("string")
.build())
.agingTime(0)
.firstName("string")
.groups(ActiveDirectoryJoinPointGroupArgs.builder()
.name("string")
.sid("string")
.type("string")
.build())
.identityNotInAdBehaviour("string")
.jobTitle("string")
.lastName("string")
.locality("string")
.name("string")
.organizationalUnit("string")
.plaintextAuth(false)
.rewriteRules(ActiveDirectoryJoinPointRewriteRuleArgs.builder()
.rewriteMatch("string")
.rewriteResult("string")
.rowId("string")
.build())
.schema("string")
.stateOrProvince("string")
.adScopesNames("string")
.telephone("string")
.enablePassChange(false)
.build());
active_directory_join_point_resource = ise.identitymanagement.ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource",
domain="string",
enable_rewrites=False,
street_address="string",
auth_protection_type="string",
country="string",
department="string",
description="string",
failed_auth_threshold=0,
email="string",
enable_callback_for_dialin_client=False,
enable_dialin_permission_check=False,
enable_domain_allowed_list=False,
enable_failed_auth_protection=False,
enable_machine_access=False,
enable_machine_auth=False,
unreachable_domains_behaviour="string",
attributes=[ise.identitymanagement.ActiveDirectoryJoinPointAttributeArgs(
default_value="string",
internal_name="string",
name="string",
type="string",
)],
aging_time=0,
first_name="string",
groups=[ise.identitymanagement.ActiveDirectoryJoinPointGroupArgs(
name="string",
sid="string",
type="string",
)],
identity_not_in_ad_behaviour="string",
job_title="string",
last_name="string",
locality="string",
name="string",
organizational_unit="string",
plaintext_auth=False,
rewrite_rules=[ise.identitymanagement.ActiveDirectoryJoinPointRewriteRuleArgs(
rewrite_match="string",
rewrite_result="string",
row_id="string",
)],
schema="string",
state_or_province="string",
ad_scopes_names="string",
telephone="string",
enable_pass_change=False)
const activeDirectoryJoinPointResource = new ise.identitymanagement.ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource", {
domain: "string",
enableRewrites: false,
streetAddress: "string",
authProtectionType: "string",
country: "string",
department: "string",
description: "string",
failedAuthThreshold: 0,
email: "string",
enableCallbackForDialinClient: false,
enableDialinPermissionCheck: false,
enableDomainAllowedList: false,
enableFailedAuthProtection: false,
enableMachineAccess: false,
enableMachineAuth: false,
unreachableDomainsBehaviour: "string",
attributes: [{
defaultValue: "string",
internalName: "string",
name: "string",
type: "string",
}],
agingTime: 0,
firstName: "string",
groups: [{
name: "string",
sid: "string",
type: "string",
}],
identityNotInAdBehaviour: "string",
jobTitle: "string",
lastName: "string",
locality: "string",
name: "string",
organizationalUnit: "string",
plaintextAuth: false,
rewriteRules: [{
rewriteMatch: "string",
rewriteResult: "string",
rowId: "string",
}],
schema: "string",
stateOrProvince: "string",
adScopesNames: "string",
telephone: "string",
enablePassChange: false,
});
type: ise:identitymanagement:ActiveDirectoryJoinPoint
properties:
adScopesNames: string
agingTime: 0
attributes:
- defaultValue: string
internalName: string
name: string
type: string
authProtectionType: string
country: string
department: string
description: string
domain: string
email: string
enableCallbackForDialinClient: false
enableDialinPermissionCheck: false
enableDomainAllowedList: false
enableFailedAuthProtection: false
enableMachineAccess: false
enableMachineAuth: false
enablePassChange: false
enableRewrites: false
failedAuthThreshold: 0
firstName: string
groups:
- name: string
sid: string
type: string
identityNotInAdBehaviour: string
jobTitle: string
lastName: string
locality: string
name: string
organizationalUnit: string
plaintextAuth: false
rewriteRules:
- rewriteMatch: string
rewriteResult: string
rowId: string
schema: string
stateOrProvince: string
streetAddress: string
telephone: string
unreachableDomainsBehaviour: string
ActiveDirectoryJoinPoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ActiveDirectoryJoinPoint resource accepts the following input properties:
- Domain string
- AD domain associated with the join point
- Ad
Scopes stringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- Aging
Time int - Aging Time - Default value:
5
- Attributes
List<Active
Directory Join Point Attribute> - List of AD attributes
- Auth
Protection stringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Email string
- User info attribute
- Enable
Callback boolFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- Enable
Dialin boolPermission Check - Enable Dial In Permission Check - Default value:
false
- Enable
Domain boolAllowed List - Default value:
true
- Default value:
- Enable
Failed boolAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- Enable
Machine boolAccess - Enable Machine Access - Default value:
true
- Enable
Machine boolAuth - Enable Machine Authentication - Default value:
true
- Enable
Pass boolChange - Enable Password Change - Default value:
true
- Enable
Rewrites bool - Enable Rewrites - Default value:
false
- Failed
Auth intThreshold - Number of bad password attempts - Default value:
5
- First
Name string - User info attribute
- Groups
List<Active
Directory Join Point Group> - List of AD Groups
- Identity
Not stringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- Job
Title string - User info attribute
- Last
Name string - User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- Organizational
Unit string - User info attribute
- Plaintext
Auth bool - Plain Text Authentication - Default value:
false
- Rewrite
Rules List<ActiveDirectory Join Point Rewrite Rule> - List of Rewrite rules
- Schema string
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- State
Or stringProvince - User info attribute
- Street
Address string - User info attribute
- Telephone string
- User info attribute
- Unreachable
Domains stringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- Domain string
- AD domain associated with the join point
- Ad
Scopes stringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- Aging
Time int - Aging Time - Default value:
5
- Attributes
[]Active
Directory Join Point Attribute Args - List of AD attributes
- Auth
Protection stringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Email string
- User info attribute
- Enable
Callback boolFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- Enable
Dialin boolPermission Check - Enable Dial In Permission Check - Default value:
false
- Enable
Domain boolAllowed List - Default value:
true
- Default value:
- Enable
Failed boolAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- Enable
Machine boolAccess - Enable Machine Access - Default value:
true
- Enable
Machine boolAuth - Enable Machine Authentication - Default value:
true
- Enable
Pass boolChange - Enable Password Change - Default value:
true
- Enable
Rewrites bool - Enable Rewrites - Default value:
false
- Failed
Auth intThreshold - Number of bad password attempts - Default value:
5
- First
Name string - User info attribute
- Groups
[]Active
Directory Join Point Group Args - List of AD Groups
- Identity
Not stringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- Job
Title string - User info attribute
- Last
Name string - User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- Organizational
Unit string - User info attribute
- Plaintext
Auth bool - Plain Text Authentication - Default value:
false
- Rewrite
Rules []ActiveDirectory Join Point Rewrite Rule Args - List of Rewrite rules
- Schema string
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- State
Or stringProvince - User info attribute
- Street
Address string - User info attribute
- Telephone string
- User info attribute
- Unreachable
Domains stringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- domain String
- AD domain associated with the join point
- ad
Scopes StringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging
Time Integer - Aging Time - Default value:
5
- attributes
List<Active
Directory Join Point Attribute> - List of AD attributes
- auth
Protection StringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- email String
- User info attribute
- enable
Callback BooleanFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- enable
Dialin BooleanPermission Check - Enable Dial In Permission Check - Default value:
false
- enable
Domain BooleanAllowed List - Default value:
true
- Default value:
- enable
Failed BooleanAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable
Machine BooleanAccess - Enable Machine Access - Default value:
true
- enable
Machine BooleanAuth - Enable Machine Authentication - Default value:
true
- enable
Pass BooleanChange - Enable Password Change - Default value:
true
- enable
Rewrites Boolean - Enable Rewrites - Default value:
false
- failed
Auth IntegerThreshold - Number of bad password attempts - Default value:
5
- first
Name String - User info attribute
- groups
List<Active
Directory Join Point Group> - List of AD Groups
- identity
Not StringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job
Title String - User info attribute
- last
Name String - User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizational
Unit String - User info attribute
- plaintext
Auth Boolean - Plain Text Authentication - Default value:
false
- rewrite
Rules List<ActiveDirectory Join Point Rewrite Rule> - List of Rewrite rules
- schema String
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state
Or StringProvince - User info attribute
- street
Address String - User info attribute
- telephone String
- User info attribute
- unreachable
Domains StringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- domain string
- AD domain associated with the join point
- ad
Scopes stringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging
Time number - Aging Time - Default value:
5
- attributes
Active
Directory Join Point Attribute[] - List of AD attributes
- auth
Protection stringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country string
- User info attribute
- department string
- User info attribute
- description string
- Join point description
- email string
- User info attribute
- enable
Callback booleanFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- enable
Dialin booleanPermission Check - Enable Dial In Permission Check - Default value:
false
- enable
Domain booleanAllowed List - Default value:
true
- Default value:
- enable
Failed booleanAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable
Machine booleanAccess - Enable Machine Access - Default value:
true
- enable
Machine booleanAuth - Enable Machine Authentication - Default value:
true
- enable
Pass booleanChange - Enable Password Change - Default value:
true
- enable
Rewrites boolean - Enable Rewrites - Default value:
false
- failed
Auth numberThreshold - Number of bad password attempts - Default value:
5
- first
Name string - User info attribute
- groups
Active
Directory Join Point Group[] - List of AD Groups
- identity
Not stringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job
Title string - User info attribute
- last
Name string - User info attribute
- locality string
- User info attribute
- name string
- The name of the active directory join point
- organizational
Unit string - User info attribute
- plaintext
Auth boolean - Plain Text Authentication - Default value:
false
- rewrite
Rules ActiveDirectory Join Point Rewrite Rule[] - List of Rewrite rules
- schema string
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state
Or stringProvince - User info attribute
- street
Address string - User info attribute
- telephone string
- User info attribute
- unreachable
Domains stringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- domain str
- AD domain associated with the join point
- ad_
scopes_ strnames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging_
time int - Aging Time - Default value:
5
- attributes
Sequence[Active
Directory Join Point Attribute Args] - List of AD attributes
- auth_
protection_ strtype - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country str
- User info attribute
- department str
- User info attribute
- description str
- Join point description
- email str
- User info attribute
- enable_
callback_ boolfor_ dialin_ client - Enable Callback For Dial In Client - Default value:
false
- enable_
dialin_ boolpermission_ check - Enable Dial In Permission Check - Default value:
false
- enable_
domain_ boolallowed_ list - Default value:
true
- Default value:
- enable_
failed_ boolauth_ protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable_
machine_ boolaccess - Enable Machine Access - Default value:
true
- enable_
machine_ boolauth - Enable Machine Authentication - Default value:
true
- enable_
pass_ boolchange - Enable Password Change - Default value:
true
- enable_
rewrites bool - Enable Rewrites - Default value:
false
- failed_
auth_ intthreshold - Number of bad password attempts - Default value:
5
- first_
name str - User info attribute
- groups
Sequence[Active
Directory Join Point Group Args] - List of AD Groups
- identity_
not_ strin_ ad_ behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job_
title str - User info attribute
- last_
name str - User info attribute
- locality str
- User info attribute
- name str
- The name of the active directory join point
- organizational_
unit str - User info attribute
- plaintext_
auth bool - Plain Text Authentication - Default value:
false
- rewrite_
rules Sequence[ActiveDirectory Join Point Rewrite Rule Args] - List of Rewrite rules
- schema str
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state_
or_ strprovince - User info attribute
- street_
address str - User info attribute
- telephone str
- User info attribute
- unreachable_
domains_ strbehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- domain String
- AD domain associated with the join point
- ad
Scopes StringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging
Time Number - Aging Time - Default value:
5
- attributes List<Property Map>
- List of AD attributes
- auth
Protection StringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- email String
- User info attribute
- enable
Callback BooleanFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- enable
Dialin BooleanPermission Check - Enable Dial In Permission Check - Default value:
false
- enable
Domain BooleanAllowed List - Default value:
true
- Default value:
- enable
Failed BooleanAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable
Machine BooleanAccess - Enable Machine Access - Default value:
true
- enable
Machine BooleanAuth - Enable Machine Authentication - Default value:
true
- enable
Pass BooleanChange - Enable Password Change - Default value:
true
- enable
Rewrites Boolean - Enable Rewrites - Default value:
false
- failed
Auth NumberThreshold - Number of bad password attempts - Default value:
5
- first
Name String - User info attribute
- groups List<Property Map>
- List of AD Groups
- identity
Not StringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job
Title String - User info attribute
- last
Name String - User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizational
Unit String - User info attribute
- plaintext
Auth Boolean - Plain Text Authentication - Default value:
false
- rewrite
Rules List<Property Map> - List of Rewrite rules
- schema String
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state
Or StringProvince - User info attribute
- street
Address String - User info attribute
- telephone String
- User info attribute
- unreachable
Domains StringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
Outputs
All input properties are implicitly available as output properties. Additionally, the ActiveDirectoryJoinPoint 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 ActiveDirectoryJoinPoint Resource
Get an existing ActiveDirectoryJoinPoint 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?: ActiveDirectoryJoinPointState, opts?: CustomResourceOptions): ActiveDirectoryJoinPoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ad_scopes_names: Optional[str] = None,
aging_time: Optional[int] = None,
attributes: Optional[Sequence[ActiveDirectoryJoinPointAttributeArgs]] = None,
auth_protection_type: Optional[str] = None,
country: Optional[str] = None,
department: Optional[str] = None,
description: Optional[str] = None,
domain: Optional[str] = None,
email: Optional[str] = None,
enable_callback_for_dialin_client: Optional[bool] = None,
enable_dialin_permission_check: Optional[bool] = None,
enable_domain_allowed_list: Optional[bool] = None,
enable_failed_auth_protection: Optional[bool] = None,
enable_machine_access: Optional[bool] = None,
enable_machine_auth: Optional[bool] = None,
enable_pass_change: Optional[bool] = None,
enable_rewrites: Optional[bool] = None,
failed_auth_threshold: Optional[int] = None,
first_name: Optional[str] = None,
groups: Optional[Sequence[ActiveDirectoryJoinPointGroupArgs]] = None,
identity_not_in_ad_behaviour: Optional[str] = None,
job_title: Optional[str] = None,
last_name: Optional[str] = None,
locality: Optional[str] = None,
name: Optional[str] = None,
organizational_unit: Optional[str] = None,
plaintext_auth: Optional[bool] = None,
rewrite_rules: Optional[Sequence[ActiveDirectoryJoinPointRewriteRuleArgs]] = None,
schema: Optional[str] = None,
state_or_province: Optional[str] = None,
street_address: Optional[str] = None,
telephone: Optional[str] = None,
unreachable_domains_behaviour: Optional[str] = None) -> ActiveDirectoryJoinPoint
func GetActiveDirectoryJoinPoint(ctx *Context, name string, id IDInput, state *ActiveDirectoryJoinPointState, opts ...ResourceOption) (*ActiveDirectoryJoinPoint, error)
public static ActiveDirectoryJoinPoint Get(string name, Input<string> id, ActiveDirectoryJoinPointState? state, CustomResourceOptions? opts = null)
public static ActiveDirectoryJoinPoint get(String name, Output<String> id, ActiveDirectoryJoinPointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Ad
Scopes stringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- Aging
Time int - Aging Time - Default value:
5
- Attributes
List<Active
Directory Join Point Attribute> - List of AD attributes
- Auth
Protection stringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Domain string
- AD domain associated with the join point
- Email string
- User info attribute
- Enable
Callback boolFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- Enable
Dialin boolPermission Check - Enable Dial In Permission Check - Default value:
false
- Enable
Domain boolAllowed List - Default value:
true
- Default value:
- Enable
Failed boolAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- Enable
Machine boolAccess - Enable Machine Access - Default value:
true
- Enable
Machine boolAuth - Enable Machine Authentication - Default value:
true
- Enable
Pass boolChange - Enable Password Change - Default value:
true
- Enable
Rewrites bool - Enable Rewrites - Default value:
false
- Failed
Auth intThreshold - Number of bad password attempts - Default value:
5
- First
Name string - User info attribute
- Groups
List<Active
Directory Join Point Group> - List of AD Groups
- Identity
Not stringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- Job
Title string - User info attribute
- Last
Name string - User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- Organizational
Unit string - User info attribute
- Plaintext
Auth bool - Plain Text Authentication - Default value:
false
- Rewrite
Rules List<ActiveDirectory Join Point Rewrite Rule> - List of Rewrite rules
- Schema string
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- State
Or stringProvince - User info attribute
- Street
Address string - User info attribute
- Telephone string
- User info attribute
- Unreachable
Domains stringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- Ad
Scopes stringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- Aging
Time int - Aging Time - Default value:
5
- Attributes
[]Active
Directory Join Point Attribute Args - List of AD attributes
- Auth
Protection stringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Domain string
- AD domain associated with the join point
- Email string
- User info attribute
- Enable
Callback boolFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- Enable
Dialin boolPermission Check - Enable Dial In Permission Check - Default value:
false
- Enable
Domain boolAllowed List - Default value:
true
- Default value:
- Enable
Failed boolAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- Enable
Machine boolAccess - Enable Machine Access - Default value:
true
- Enable
Machine boolAuth - Enable Machine Authentication - Default value:
true
- Enable
Pass boolChange - Enable Password Change - Default value:
true
- Enable
Rewrites bool - Enable Rewrites - Default value:
false
- Failed
Auth intThreshold - Number of bad password attempts - Default value:
5
- First
Name string - User info attribute
- Groups
[]Active
Directory Join Point Group Args - List of AD Groups
- Identity
Not stringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- Job
Title string - User info attribute
- Last
Name string - User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- Organizational
Unit string - User info attribute
- Plaintext
Auth bool - Plain Text Authentication - Default value:
false
- Rewrite
Rules []ActiveDirectory Join Point Rewrite Rule Args - List of Rewrite rules
- Schema string
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- State
Or stringProvince - User info attribute
- Street
Address string - User info attribute
- Telephone string
- User info attribute
- Unreachable
Domains stringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- ad
Scopes StringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging
Time Integer - Aging Time - Default value:
5
- attributes
List<Active
Directory Join Point Attribute> - List of AD attributes
- auth
Protection StringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- domain String
- AD domain associated with the join point
- email String
- User info attribute
- enable
Callback BooleanFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- enable
Dialin BooleanPermission Check - Enable Dial In Permission Check - Default value:
false
- enable
Domain BooleanAllowed List - Default value:
true
- Default value:
- enable
Failed BooleanAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable
Machine BooleanAccess - Enable Machine Access - Default value:
true
- enable
Machine BooleanAuth - Enable Machine Authentication - Default value:
true
- enable
Pass BooleanChange - Enable Password Change - Default value:
true
- enable
Rewrites Boolean - Enable Rewrites - Default value:
false
- failed
Auth IntegerThreshold - Number of bad password attempts - Default value:
5
- first
Name String - User info attribute
- groups
List<Active
Directory Join Point Group> - List of AD Groups
- identity
Not StringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job
Title String - User info attribute
- last
Name String - User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizational
Unit String - User info attribute
- plaintext
Auth Boolean - Plain Text Authentication - Default value:
false
- rewrite
Rules List<ActiveDirectory Join Point Rewrite Rule> - List of Rewrite rules
- schema String
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state
Or StringProvince - User info attribute
- street
Address String - User info attribute
- telephone String
- User info attribute
- unreachable
Domains StringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- ad
Scopes stringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging
Time number - Aging Time - Default value:
5
- attributes
Active
Directory Join Point Attribute[] - List of AD attributes
- auth
Protection stringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country string
- User info attribute
- department string
- User info attribute
- description string
- Join point description
- domain string
- AD domain associated with the join point
- email string
- User info attribute
- enable
Callback booleanFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- enable
Dialin booleanPermission Check - Enable Dial In Permission Check - Default value:
false
- enable
Domain booleanAllowed List - Default value:
true
- Default value:
- enable
Failed booleanAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable
Machine booleanAccess - Enable Machine Access - Default value:
true
- enable
Machine booleanAuth - Enable Machine Authentication - Default value:
true
- enable
Pass booleanChange - Enable Password Change - Default value:
true
- enable
Rewrites boolean - Enable Rewrites - Default value:
false
- failed
Auth numberThreshold - Number of bad password attempts - Default value:
5
- first
Name string - User info attribute
- groups
Active
Directory Join Point Group[] - List of AD Groups
- identity
Not stringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job
Title string - User info attribute
- last
Name string - User info attribute
- locality string
- User info attribute
- name string
- The name of the active directory join point
- organizational
Unit string - User info attribute
- plaintext
Auth boolean - Plain Text Authentication - Default value:
false
- rewrite
Rules ActiveDirectory Join Point Rewrite Rule[] - List of Rewrite rules
- schema string
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state
Or stringProvince - User info attribute
- street
Address string - User info attribute
- telephone string
- User info attribute
- unreachable
Domains stringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- ad_
scopes_ strnames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging_
time int - Aging Time - Default value:
5
- attributes
Sequence[Active
Directory Join Point Attribute Args] - List of AD attributes
- auth_
protection_ strtype - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country str
- User info attribute
- department str
- User info attribute
- description str
- Join point description
- domain str
- AD domain associated with the join point
- email str
- User info attribute
- enable_
callback_ boolfor_ dialin_ client - Enable Callback For Dial In Client - Default value:
false
- enable_
dialin_ boolpermission_ check - Enable Dial In Permission Check - Default value:
false
- enable_
domain_ boolallowed_ list - Default value:
true
- Default value:
- enable_
failed_ boolauth_ protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable_
machine_ boolaccess - Enable Machine Access - Default value:
true
- enable_
machine_ boolauth - Enable Machine Authentication - Default value:
true
- enable_
pass_ boolchange - Enable Password Change - Default value:
true
- enable_
rewrites bool - Enable Rewrites - Default value:
false
- failed_
auth_ intthreshold - Number of bad password attempts - Default value:
5
- first_
name str - User info attribute
- groups
Sequence[Active
Directory Join Point Group Args] - List of AD Groups
- identity_
not_ strin_ ad_ behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job_
title str - User info attribute
- last_
name str - User info attribute
- locality str
- User info attribute
- name str
- The name of the active directory join point
- organizational_
unit str - User info attribute
- plaintext_
auth bool - Plain Text Authentication - Default value:
false
- rewrite_
rules Sequence[ActiveDirectory Join Point Rewrite Rule Args] - List of Rewrite rules
- schema str
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state_
or_ strprovince - User info attribute
- street_
address str - User info attribute
- telephone str
- User info attribute
- unreachable_
domains_ strbehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
- ad
Scopes StringNames - String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value:
Default_Scope
- aging
Time Number - Aging Time - Default value:
5
- attributes List<Property Map>
- List of AD attributes
- auth
Protection StringType - Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices:
WIRELESS
,WIRED
,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- domain String
- AD domain associated with the join point
- email String
- User info attribute
- enable
Callback BooleanFor Dialin Client - Enable Callback For Dial In Client - Default value:
false
- enable
Dialin BooleanPermission Check - Enable Dial In Permission Check - Default value:
false
- enable
Domain BooleanAllowed List - Default value:
true
- Default value:
- enable
Failed BooleanAuth Protection - Enable prevent AD account lockout due to too many bad password attempts - Default value:
false
- enable
Machine BooleanAccess - Enable Machine Access - Default value:
true
- enable
Machine BooleanAuth - Enable Machine Authentication - Default value:
true
- enable
Pass BooleanChange - Enable Password Change - Default value:
true
- enable
Rewrites Boolean - Enable Rewrites - Default value:
false
- failed
Auth NumberThreshold - Number of bad password attempts - Default value:
5
- first
Name String - User info attribute
- groups List<Property Map>
- List of AD Groups
- identity
Not StringIn Ad Behaviour - Identity Not In AD Behaviour - Choices:
REJECT
,SEARCH_JOINED_FOREST
,SEARCH_ALL
- job
Title String - User info attribute
- last
Name String - User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizational
Unit String - User info attribute
- plaintext
Auth Boolean - Plain Text Authentication - Default value:
false
- rewrite
Rules List<Property Map> - List of Rewrite rules
- schema String
- Schema - Choices:
ACTIVE_DIRECTORY
,CUSTOM
- state
Or StringProvince - User info attribute
- street
Address String - User info attribute
- telephone String
- User info attribute
- unreachable
Domains StringBehaviour - Unreachable Domains Behaviour - Choices:
PROCEED
,DROP
Supporting Types
ActiveDirectoryJoinPointAttribute, ActiveDirectoryJoinPointAttributeArgs
- Default
Value string - Required for each attribute in the attribute list. Can contain an empty string.
- Internal
Name string - Required for each attribute in the attribute list
- Name string
- Required for each attribute in the attribute list with no duplication between attributes
- Type string
- Required for each group in the group list
- Choices:
STRING
,IP
,BOOLEAN
,INT
,OCTET_STRING
- Choices:
- Default
Value string - Required for each attribute in the attribute list. Can contain an empty string.
- Internal
Name string - Required for each attribute in the attribute list
- Name string
- Required for each attribute in the attribute list with no duplication between attributes
- Type string
- Required for each group in the group list
- Choices:
STRING
,IP
,BOOLEAN
,INT
,OCTET_STRING
- Choices:
- default
Value String - Required for each attribute in the attribute list. Can contain an empty string.
- internal
Name String - Required for each attribute in the attribute list
- name String
- Required for each attribute in the attribute list with no duplication between attributes
- type String
- Required for each group in the group list
- Choices:
STRING
,IP
,BOOLEAN
,INT
,OCTET_STRING
- Choices:
- default
Value string - Required for each attribute in the attribute list. Can contain an empty string.
- internal
Name string - Required for each attribute in the attribute list
- name string
- Required for each attribute in the attribute list with no duplication between attributes
- type string
- Required for each group in the group list
- Choices:
STRING
,IP
,BOOLEAN
,INT
,OCTET_STRING
- Choices:
- default_
value str - Required for each attribute in the attribute list. Can contain an empty string.
- internal_
name str - Required for each attribute in the attribute list
- name str
- Required for each attribute in the attribute list with no duplication between attributes
- type str
- Required for each group in the group list
- Choices:
STRING
,IP
,BOOLEAN
,INT
,OCTET_STRING
- Choices:
- default
Value String - Required for each attribute in the attribute list. Can contain an empty string.
- internal
Name String - Required for each attribute in the attribute list
- name String
- Required for each attribute in the attribute list with no duplication between attributes
- type String
- Required for each group in the group list
- Choices:
STRING
,IP
,BOOLEAN
,INT
,OCTET_STRING
- Choices:
ActiveDirectoryJoinPointGroup, ActiveDirectoryJoinPointGroupArgs
ActiveDirectoryJoinPointRewriteRule, ActiveDirectoryJoinPointRewriteRuleArgs
- Rewrite
Match string - Required for each rule in the list with no duplication between rules
- Rewrite
Result string - Required for each rule in the list
- Row
Id string - Required for each rule in the list in serial order
- Rewrite
Match string - Required for each rule in the list with no duplication between rules
- Rewrite
Result string - Required for each rule in the list
- Row
Id string - Required for each rule in the list in serial order
- rewrite
Match String - Required for each rule in the list with no duplication between rules
- rewrite
Result String - Required for each rule in the list
- row
Id String - Required for each rule in the list in serial order
- rewrite
Match string - Required for each rule in the list with no duplication between rules
- rewrite
Result string - Required for each rule in the list
- row
Id string - Required for each rule in the list in serial order
- rewrite_
match str - Required for each rule in the list with no duplication between rules
- rewrite_
result str - Required for each rule in the list
- row_
id str - Required for each rule in the list in serial order
- rewrite
Match String - Required for each rule in the list with no duplication between rules
- rewrite
Result String - Required for each rule in the list
- row
Id String - Required for each rule in the list in serial order
Import
$ pulumi import ise:identitymanagement/activeDirectoryJoinPoint:ActiveDirectoryJoinPoint example "76d24097-41c4-4558-a4d0-a8c07ac08470"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ise
Terraform Provider.