checkpoint.ManagementPasscodeProfile
Explore with Pulumi AI
This resource allows you to execute Check Point Passcode Profile.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementPasscodeProfile("example", {
    allowSimplePasscode: false,
    enableInactivityTimeLock: true,
    enablePasscodeFailedAttempts: false,
    forcePasscodeExpiration: false,
    maxInactivityTimeLock: 10,
    minPasscodeComplexCharacters: 3,
    minPasscodeLength: 10,
    passcodeExpirationPeriod: 190,
    requireAlphanumericPasscode: true,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementPasscodeProfile("example",
    allow_simple_passcode=False,
    enable_inactivity_time_lock=True,
    enable_passcode_failed_attempts=False,
    force_passcode_expiration=False,
    max_inactivity_time_lock=10,
    min_passcode_complex_characters=3,
    min_passcode_length=10,
    passcode_expiration_period=190,
    require_alphanumeric_passcode=True)
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := checkpoint.NewManagementPasscodeProfile(ctx, "example", &checkpoint.ManagementPasscodeProfileArgs{
			AllowSimplePasscode:          pulumi.Bool(false),
			EnableInactivityTimeLock:     pulumi.Bool(true),
			EnablePasscodeFailedAttempts: pulumi.Bool(false),
			ForcePasscodeExpiration:      pulumi.Bool(false),
			MaxInactivityTimeLock:        pulumi.Float64(10),
			MinPasscodeComplexCharacters: pulumi.Float64(3),
			MinPasscodeLength:            pulumi.Float64(10),
			PasscodeExpirationPeriod:     pulumi.Float64(190),
			RequireAlphanumericPasscode:  pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() => 
{
    var example = new Checkpoint.ManagementPasscodeProfile("example", new()
    {
        AllowSimplePasscode = false,
        EnableInactivityTimeLock = true,
        EnablePasscodeFailedAttempts = false,
        ForcePasscodeExpiration = false,
        MaxInactivityTimeLock = 10,
        MinPasscodeComplexCharacters = 3,
        MinPasscodeLength = 10,
        PasscodeExpirationPeriod = 190,
        RequireAlphanumericPasscode = true,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementPasscodeProfile;
import com.pulumi.checkpoint.ManagementPasscodeProfileArgs;
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 ManagementPasscodeProfile("example", ManagementPasscodeProfileArgs.builder()
            .allowSimplePasscode(false)
            .enableInactivityTimeLock(true)
            .enablePasscodeFailedAttempts(false)
            .forcePasscodeExpiration(false)
            .maxInactivityTimeLock(10)
            .minPasscodeComplexCharacters(3)
            .minPasscodeLength(10)
            .passcodeExpirationPeriod(190)
            .requireAlphanumericPasscode(true)
            .build());
    }
}
resources:
  example:
    type: checkpoint:ManagementPasscodeProfile
    properties:
      allowSimplePasscode: false
      enableInactivityTimeLock: true
      enablePasscodeFailedAttempts: false
      forcePasscodeExpiration: false
      maxInactivityTimeLock: 10
      minPasscodeComplexCharacters: 3
      minPasscodeLength: 10
      passcodeExpirationPeriod: 190
      requireAlphanumericPasscode: true
Create ManagementPasscodeProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementPasscodeProfile(name: string, args?: ManagementPasscodeProfileArgs, opts?: CustomResourceOptions);@overload
def ManagementPasscodeProfile(resource_name: str,
                              args: Optional[ManagementPasscodeProfileArgs] = None,
                              opts: Optional[ResourceOptions] = None)
@overload
def ManagementPasscodeProfile(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              allow_simple_passcode: Optional[bool] = None,
                              color: Optional[str] = None,
                              comments: Optional[str] = None,
                              enable_inactivity_time_lock: Optional[bool] = None,
                              enable_passcode_failed_attempts: Optional[bool] = None,
                              enable_passcode_history: Optional[bool] = None,
                              force_passcode_expiration: Optional[bool] = None,
                              ignore_errors: Optional[bool] = None,
                              ignore_warnings: Optional[bool] = None,
                              management_passcode_profile_id: Optional[str] = None,
                              max_inactivity_time_lock: Optional[float] = None,
                              max_passcode_failed_attempts: Optional[float] = None,
                              min_passcode_complex_characters: Optional[float] = None,
                              min_passcode_length: Optional[float] = None,
                              name: Optional[str] = None,
                              passcode_expiration_period: Optional[float] = None,
                              passcode_history: Optional[float] = None,
                              require_alphanumeric_passcode: Optional[bool] = None,
                              tags: Optional[Sequence[str]] = None)func NewManagementPasscodeProfile(ctx *Context, name string, args *ManagementPasscodeProfileArgs, opts ...ResourceOption) (*ManagementPasscodeProfile, error)public ManagementPasscodeProfile(string name, ManagementPasscodeProfileArgs? args = null, CustomResourceOptions? opts = null)
public ManagementPasscodeProfile(String name, ManagementPasscodeProfileArgs args)
public ManagementPasscodeProfile(String name, ManagementPasscodeProfileArgs args, CustomResourceOptions options)
type: checkpoint:ManagementPasscodeProfile
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 ManagementPasscodeProfileArgs
- 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 ManagementPasscodeProfileArgs
- 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 ManagementPasscodeProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementPasscodeProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementPasscodeProfileArgs
- 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 managementPasscodeProfileResource = new Checkpoint.ManagementPasscodeProfile("managementPasscodeProfileResource", new()
{
    AllowSimplePasscode = false,
    Color = "string",
    Comments = "string",
    EnableInactivityTimeLock = false,
    EnablePasscodeFailedAttempts = false,
    EnablePasscodeHistory = false,
    ForcePasscodeExpiration = false,
    IgnoreErrors = false,
    IgnoreWarnings = false,
    ManagementPasscodeProfileId = "string",
    MaxInactivityTimeLock = 0,
    MaxPasscodeFailedAttempts = 0,
    MinPasscodeComplexCharacters = 0,
    MinPasscodeLength = 0,
    Name = "string",
    PasscodeExpirationPeriod = 0,
    PasscodeHistory = 0,
    RequireAlphanumericPasscode = false,
    Tags = new[]
    {
        "string",
    },
});
example, err := checkpoint.NewManagementPasscodeProfile(ctx, "managementPasscodeProfileResource", &checkpoint.ManagementPasscodeProfileArgs{
	AllowSimplePasscode:          pulumi.Bool(false),
	Color:                        pulumi.String("string"),
	Comments:                     pulumi.String("string"),
	EnableInactivityTimeLock:     pulumi.Bool(false),
	EnablePasscodeFailedAttempts: pulumi.Bool(false),
	EnablePasscodeHistory:        pulumi.Bool(false),
	ForcePasscodeExpiration:      pulumi.Bool(false),
	IgnoreErrors:                 pulumi.Bool(false),
	IgnoreWarnings:               pulumi.Bool(false),
	ManagementPasscodeProfileId:  pulumi.String("string"),
	MaxInactivityTimeLock:        pulumi.Float64(0),
	MaxPasscodeFailedAttempts:    pulumi.Float64(0),
	MinPasscodeComplexCharacters: pulumi.Float64(0),
	MinPasscodeLength:            pulumi.Float64(0),
	Name:                         pulumi.String("string"),
	PasscodeExpirationPeriod:     pulumi.Float64(0),
	PasscodeHistory:              pulumi.Float64(0),
	RequireAlphanumericPasscode:  pulumi.Bool(false),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var managementPasscodeProfileResource = new ManagementPasscodeProfile("managementPasscodeProfileResource", ManagementPasscodeProfileArgs.builder()
    .allowSimplePasscode(false)
    .color("string")
    .comments("string")
    .enableInactivityTimeLock(false)
    .enablePasscodeFailedAttempts(false)
    .enablePasscodeHistory(false)
    .forcePasscodeExpiration(false)
    .ignoreErrors(false)
    .ignoreWarnings(false)
    .managementPasscodeProfileId("string")
    .maxInactivityTimeLock(0.0)
    .maxPasscodeFailedAttempts(0.0)
    .minPasscodeComplexCharacters(0.0)
    .minPasscodeLength(0.0)
    .name("string")
    .passcodeExpirationPeriod(0.0)
    .passcodeHistory(0.0)
    .requireAlphanumericPasscode(false)
    .tags("string")
    .build());
management_passcode_profile_resource = checkpoint.ManagementPasscodeProfile("managementPasscodeProfileResource",
    allow_simple_passcode=False,
    color="string",
    comments="string",
    enable_inactivity_time_lock=False,
    enable_passcode_failed_attempts=False,
    enable_passcode_history=False,
    force_passcode_expiration=False,
    ignore_errors=False,
    ignore_warnings=False,
    management_passcode_profile_id="string",
    max_inactivity_time_lock=0,
    max_passcode_failed_attempts=0,
    min_passcode_complex_characters=0,
    min_passcode_length=0,
    name="string",
    passcode_expiration_period=0,
    passcode_history=0,
    require_alphanumeric_passcode=False,
    tags=["string"])
const managementPasscodeProfileResource = new checkpoint.ManagementPasscodeProfile("managementPasscodeProfileResource", {
    allowSimplePasscode: false,
    color: "string",
    comments: "string",
    enableInactivityTimeLock: false,
    enablePasscodeFailedAttempts: false,
    enablePasscodeHistory: false,
    forcePasscodeExpiration: false,
    ignoreErrors: false,
    ignoreWarnings: false,
    managementPasscodeProfileId: "string",
    maxInactivityTimeLock: 0,
    maxPasscodeFailedAttempts: 0,
    minPasscodeComplexCharacters: 0,
    minPasscodeLength: 0,
    name: "string",
    passcodeExpirationPeriod: 0,
    passcodeHistory: 0,
    requireAlphanumericPasscode: false,
    tags: ["string"],
});
type: checkpoint:ManagementPasscodeProfile
properties:
    allowSimplePasscode: false
    color: string
    comments: string
    enableInactivityTimeLock: false
    enablePasscodeFailedAttempts: false
    enablePasscodeHistory: false
    forcePasscodeExpiration: false
    ignoreErrors: false
    ignoreWarnings: false
    managementPasscodeProfileId: string
    maxInactivityTimeLock: 0
    maxPasscodeFailedAttempts: 0
    minPasscodeComplexCharacters: 0
    minPasscodeLength: 0
    name: string
    passcodeExpirationPeriod: 0
    passcodeHistory: 0
    requireAlphanumericPasscode: false
    tags:
        - string
ManagementPasscodeProfile 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 ManagementPasscodeProfile resource accepts the following input properties:
- AllowSimple boolPasscode 
- The passcode length is 4 and only numeric values allowed.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- EnableInactivity boolTime Lock 
- Lock the device if app is inactive.
- EnablePasscode boolFailed Attempts 
- Exit after few failures in passcode verification.
- EnablePasscode boolHistory 
- Check passcode history for reparations.
- ForcePasscode boolExpiration 
- Enable/disable expiration date to the passcode.
- IgnoreErrors bool
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- IgnoreWarnings bool
- Apply changes ignoring warnings.
- ManagementPasscode stringProfile Id 
- MaxInactivity doubleTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- MaxPasscode doubleFailed Attempts 
- Number of failed attempts allowed.
- MinPasscode doubleComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- MinPasscode doubleLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- Name string
- Object name.
- PasscodeExpiration doublePeriod 
- The period in days after which the passcode will expire.
- PasscodeHistory double
- Number of passcodes that will be kept in history.
- RequireAlphanumeric boolPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- AllowSimple boolPasscode 
- The passcode length is 4 and only numeric values allowed.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- EnableInactivity boolTime Lock 
- Lock the device if app is inactive.
- EnablePasscode boolFailed Attempts 
- Exit after few failures in passcode verification.
- EnablePasscode boolHistory 
- Check passcode history for reparations.
- ForcePasscode boolExpiration 
- Enable/disable expiration date to the passcode.
- IgnoreErrors bool
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- IgnoreWarnings bool
- Apply changes ignoring warnings.
- ManagementPasscode stringProfile Id 
- MaxInactivity float64Time Lock 
- Time without user input before passcode must be re-entered (in minutes).
- MaxPasscode float64Failed Attempts 
- Number of failed attempts allowed.
- MinPasscode float64Complex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- MinPasscode float64Length 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- Name string
- Object name.
- PasscodeExpiration float64Period 
- The period in days after which the passcode will expire.
- PasscodeHistory float64
- Number of passcodes that will be kept in history.
- RequireAlphanumeric boolPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- allowSimple BooleanPasscode 
- The passcode length is 4 and only numeric values allowed.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- enableInactivity BooleanTime Lock 
- Lock the device if app is inactive.
- enablePasscode BooleanFailed Attempts 
- Exit after few failures in passcode verification.
- enablePasscode BooleanHistory 
- Check passcode history for reparations.
- forcePasscode BooleanExpiration 
- Enable/disable expiration date to the passcode.
- ignoreErrors Boolean
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignoreWarnings Boolean
- Apply changes ignoring warnings.
- managementPasscode StringProfile Id 
- maxInactivity DoubleTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- maxPasscode DoubleFailed Attempts 
- Number of failed attempts allowed.
- minPasscode DoubleComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- minPasscode DoubleLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name String
- Object name.
- passcodeExpiration DoublePeriod 
- The period in days after which the passcode will expire.
- passcodeHistory Double
- Number of passcodes that will be kept in history.
- requireAlphanumeric BooleanPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- allowSimple booleanPasscode 
- The passcode length is 4 and only numeric values allowed.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- enableInactivity booleanTime Lock 
- Lock the device if app is inactive.
- enablePasscode booleanFailed Attempts 
- Exit after few failures in passcode verification.
- enablePasscode booleanHistory 
- Check passcode history for reparations.
- forcePasscode booleanExpiration 
- Enable/disable expiration date to the passcode.
- ignoreErrors boolean
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignoreWarnings boolean
- Apply changes ignoring warnings.
- managementPasscode stringProfile Id 
- maxInactivity numberTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- maxPasscode numberFailed Attempts 
- Number of failed attempts allowed.
- minPasscode numberComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- minPasscode numberLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name string
- Object name.
- passcodeExpiration numberPeriod 
- The period in days after which the passcode will expire.
- passcodeHistory number
- Number of passcodes that will be kept in history.
- requireAlphanumeric booleanPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- allow_simple_ boolpasscode 
- The passcode length is 4 and only numeric values allowed.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- enable_inactivity_ booltime_ lock 
- Lock the device if app is inactive.
- enable_passcode_ boolfailed_ attempts 
- Exit after few failures in passcode verification.
- enable_passcode_ boolhistory 
- Check passcode history for reparations.
- force_passcode_ boolexpiration 
- Enable/disable expiration date to the passcode.
- ignore_errors bool
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_warnings bool
- Apply changes ignoring warnings.
- management_passcode_ strprofile_ id 
- max_inactivity_ floattime_ lock 
- Time without user input before passcode must be re-entered (in minutes).
- max_passcode_ floatfailed_ attempts 
- Number of failed attempts allowed.
- min_passcode_ floatcomplex_ characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- min_passcode_ floatlength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name str
- Object name.
- passcode_expiration_ floatperiod 
- The period in days after which the passcode will expire.
- passcode_history float
- Number of passcodes that will be kept in history.
- require_alphanumeric_ boolpasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- allowSimple BooleanPasscode 
- The passcode length is 4 and only numeric values allowed.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- enableInactivity BooleanTime Lock 
- Lock the device if app is inactive.
- enablePasscode BooleanFailed Attempts 
- Exit after few failures in passcode verification.
- enablePasscode BooleanHistory 
- Check passcode history for reparations.
- forcePasscode BooleanExpiration 
- Enable/disable expiration date to the passcode.
- ignoreErrors Boolean
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignoreWarnings Boolean
- Apply changes ignoring warnings.
- managementPasscode StringProfile Id 
- maxInactivity NumberTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- maxPasscode NumberFailed Attempts 
- Number of failed attempts allowed.
- minPasscode NumberComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- minPasscode NumberLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name String
- Object name.
- passcodeExpiration NumberPeriod 
- The period in days after which the passcode will expire.
- passcodeHistory Number
- Number of passcodes that will be kept in history.
- requireAlphanumeric BooleanPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementPasscodeProfile 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 ManagementPasscodeProfile Resource
Get an existing ManagementPasscodeProfile 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?: ManagementPasscodeProfileState, opts?: CustomResourceOptions): ManagementPasscodeProfile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allow_simple_passcode: Optional[bool] = None,
        color: Optional[str] = None,
        comments: Optional[str] = None,
        enable_inactivity_time_lock: Optional[bool] = None,
        enable_passcode_failed_attempts: Optional[bool] = None,
        enable_passcode_history: Optional[bool] = None,
        force_passcode_expiration: Optional[bool] = None,
        ignore_errors: Optional[bool] = None,
        ignore_warnings: Optional[bool] = None,
        management_passcode_profile_id: Optional[str] = None,
        max_inactivity_time_lock: Optional[float] = None,
        max_passcode_failed_attempts: Optional[float] = None,
        min_passcode_complex_characters: Optional[float] = None,
        min_passcode_length: Optional[float] = None,
        name: Optional[str] = None,
        passcode_expiration_period: Optional[float] = None,
        passcode_history: Optional[float] = None,
        require_alphanumeric_passcode: Optional[bool] = None,
        tags: Optional[Sequence[str]] = None) -> ManagementPasscodeProfilefunc GetManagementPasscodeProfile(ctx *Context, name string, id IDInput, state *ManagementPasscodeProfileState, opts ...ResourceOption) (*ManagementPasscodeProfile, error)public static ManagementPasscodeProfile Get(string name, Input<string> id, ManagementPasscodeProfileState? state, CustomResourceOptions? opts = null)public static ManagementPasscodeProfile get(String name, Output<String> id, ManagementPasscodeProfileState state, CustomResourceOptions options)resources:  _:    type: checkpoint:ManagementPasscodeProfile    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.
- AllowSimple boolPasscode 
- The passcode length is 4 and only numeric values allowed.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- EnableInactivity boolTime Lock 
- Lock the device if app is inactive.
- EnablePasscode boolFailed Attempts 
- Exit after few failures in passcode verification.
- EnablePasscode boolHistory 
- Check passcode history for reparations.
- ForcePasscode boolExpiration 
- Enable/disable expiration date to the passcode.
- IgnoreErrors bool
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- IgnoreWarnings bool
- Apply changes ignoring warnings.
- ManagementPasscode stringProfile Id 
- MaxInactivity doubleTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- MaxPasscode doubleFailed Attempts 
- Number of failed attempts allowed.
- MinPasscode doubleComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- MinPasscode doubleLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- Name string
- Object name.
- PasscodeExpiration doublePeriod 
- The period in days after which the passcode will expire.
- PasscodeHistory double
- Number of passcodes that will be kept in history.
- RequireAlphanumeric boolPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- AllowSimple boolPasscode 
- The passcode length is 4 and only numeric values allowed.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- EnableInactivity boolTime Lock 
- Lock the device if app is inactive.
- EnablePasscode boolFailed Attempts 
- Exit after few failures in passcode verification.
- EnablePasscode boolHistory 
- Check passcode history for reparations.
- ForcePasscode boolExpiration 
- Enable/disable expiration date to the passcode.
- IgnoreErrors bool
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- IgnoreWarnings bool
- Apply changes ignoring warnings.
- ManagementPasscode stringProfile Id 
- MaxInactivity float64Time Lock 
- Time without user input before passcode must be re-entered (in minutes).
- MaxPasscode float64Failed Attempts 
- Number of failed attempts allowed.
- MinPasscode float64Complex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- MinPasscode float64Length 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- Name string
- Object name.
- PasscodeExpiration float64Period 
- The period in days after which the passcode will expire.
- PasscodeHistory float64
- Number of passcodes that will be kept in history.
- RequireAlphanumeric boolPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- allowSimple BooleanPasscode 
- The passcode length is 4 and only numeric values allowed.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- enableInactivity BooleanTime Lock 
- Lock the device if app is inactive.
- enablePasscode BooleanFailed Attempts 
- Exit after few failures in passcode verification.
- enablePasscode BooleanHistory 
- Check passcode history for reparations.
- forcePasscode BooleanExpiration 
- Enable/disable expiration date to the passcode.
- ignoreErrors Boolean
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignoreWarnings Boolean
- Apply changes ignoring warnings.
- managementPasscode StringProfile Id 
- maxInactivity DoubleTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- maxPasscode DoubleFailed Attempts 
- Number of failed attempts allowed.
- minPasscode DoubleComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- minPasscode DoubleLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name String
- Object name.
- passcodeExpiration DoublePeriod 
- The period in days after which the passcode will expire.
- passcodeHistory Double
- Number of passcodes that will be kept in history.
- requireAlphanumeric BooleanPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- allowSimple booleanPasscode 
- The passcode length is 4 and only numeric values allowed.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- enableInactivity booleanTime Lock 
- Lock the device if app is inactive.
- enablePasscode booleanFailed Attempts 
- Exit after few failures in passcode verification.
- enablePasscode booleanHistory 
- Check passcode history for reparations.
- forcePasscode booleanExpiration 
- Enable/disable expiration date to the passcode.
- ignoreErrors boolean
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignoreWarnings boolean
- Apply changes ignoring warnings.
- managementPasscode stringProfile Id 
- maxInactivity numberTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- maxPasscode numberFailed Attempts 
- Number of failed attempts allowed.
- minPasscode numberComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- minPasscode numberLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name string
- Object name.
- passcodeExpiration numberPeriod 
- The period in days after which the passcode will expire.
- passcodeHistory number
- Number of passcodes that will be kept in history.
- requireAlphanumeric booleanPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- allow_simple_ boolpasscode 
- The passcode length is 4 and only numeric values allowed.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- enable_inactivity_ booltime_ lock 
- Lock the device if app is inactive.
- enable_passcode_ boolfailed_ attempts 
- Exit after few failures in passcode verification.
- enable_passcode_ boolhistory 
- Check passcode history for reparations.
- force_passcode_ boolexpiration 
- Enable/disable expiration date to the passcode.
- ignore_errors bool
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_warnings bool
- Apply changes ignoring warnings.
- management_passcode_ strprofile_ id 
- max_inactivity_ floattime_ lock 
- Time without user input before passcode must be re-entered (in minutes).
- max_passcode_ floatfailed_ attempts 
- Number of failed attempts allowed.
- min_passcode_ floatcomplex_ characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- min_passcode_ floatlength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name str
- Object name.
- passcode_expiration_ floatperiod 
- The period in days after which the passcode will expire.
- passcode_history float
- Number of passcodes that will be kept in history.
- require_alphanumeric_ boolpasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- allowSimple BooleanPasscode 
- The passcode length is 4 and only numeric values allowed.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- enableInactivity BooleanTime Lock 
- Lock the device if app is inactive.
- enablePasscode BooleanFailed Attempts 
- Exit after few failures in passcode verification.
- enablePasscode BooleanHistory 
- Check passcode history for reparations.
- forcePasscode BooleanExpiration 
- Enable/disable expiration date to the passcode.
- ignoreErrors Boolean
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignoreWarnings Boolean
- Apply changes ignoring warnings.
- managementPasscode StringProfile Id 
- maxInactivity NumberTime Lock 
- Time without user input before passcode must be re-entered (in minutes).
- maxPasscode NumberFailed Attempts 
- Number of failed attempts allowed.
- minPasscode NumberComplex Characters 
- Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
- minPasscode NumberLength 
- Minimum passcode length - relevant if "allow-simple-passcode" is disable.
- name String
- Object name.
- passcodeExpiration NumberPeriod 
- The period in days after which the passcode will expire.
- passcodeHistory Number
- Number of passcodes that will be kept in history.
- requireAlphanumeric BooleanPasscode 
- Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the checkpointTerraform Provider.