checkpoint.ManagementUserTemplate
Explore with Pulumi AI
This resource allows you to execute Check Point User Template.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementUserTemplate("example", {
expirationByGlobalProperties: false,
expirationDate: "2030-05-30",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementUserTemplate("example",
expiration_by_global_properties=False,
expiration_date="2030-05-30")
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.NewManagementUserTemplate(ctx, "example", &checkpoint.ManagementUserTemplateArgs{
ExpirationByGlobalProperties: pulumi.Bool(false),
ExpirationDate: pulumi.String("2030-05-30"),
})
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.ManagementUserTemplate("example", new()
{
ExpirationByGlobalProperties = false,
ExpirationDate = "2030-05-30",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementUserTemplate;
import com.pulumi.checkpoint.ManagementUserTemplateArgs;
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 ManagementUserTemplate("example", ManagementUserTemplateArgs.builder()
.expirationByGlobalProperties(false)
.expirationDate("2030-05-30")
.build());
}
}
resources:
example:
type: checkpoint:ManagementUserTemplate
properties:
expirationByGlobalProperties: false
expirationDate: 2030-05-30
Create ManagementUserTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementUserTemplate(name: string, args?: ManagementUserTemplateArgs, opts?: CustomResourceOptions);
@overload
def ManagementUserTemplate(resource_name: str,
args: Optional[ManagementUserTemplateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementUserTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
allowed_locations: Optional[Mapping[str, str]] = None,
authentication_method: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
connect_daily: Optional[bool] = None,
connect_on_days: Optional[Sequence[str]] = None,
encryption: Optional[Mapping[str, str]] = None,
expiration_by_global_properties: Optional[bool] = None,
expiration_date: Optional[str] = None,
from_hour: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_user_template_id: Optional[str] = None,
name: Optional[str] = None,
radius_server: Optional[str] = None,
tacacs_server: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
to_hour: Optional[str] = None)
func NewManagementUserTemplate(ctx *Context, name string, args *ManagementUserTemplateArgs, opts ...ResourceOption) (*ManagementUserTemplate, error)
public ManagementUserTemplate(string name, ManagementUserTemplateArgs? args = null, CustomResourceOptions? opts = null)
public ManagementUserTemplate(String name, ManagementUserTemplateArgs args)
public ManagementUserTemplate(String name, ManagementUserTemplateArgs args, CustomResourceOptions options)
type: checkpoint:ManagementUserTemplate
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 ManagementUserTemplateArgs
- 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 ManagementUserTemplateArgs
- 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 ManagementUserTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementUserTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementUserTemplateArgs
- 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 managementUserTemplateResource = new Checkpoint.ManagementUserTemplate("managementUserTemplateResource", new()
{
AllowedLocations =
{
{ "string", "string" },
},
AuthenticationMethod = "string",
Color = "string",
Comments = "string",
ConnectDaily = false,
ConnectOnDays = new[]
{
"string",
},
Encryption =
{
{ "string", "string" },
},
ExpirationByGlobalProperties = false,
ExpirationDate = "string",
FromHour = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementUserTemplateId = "string",
Name = "string",
RadiusServer = "string",
TacacsServer = "string",
Tags = new[]
{
"string",
},
ToHour = "string",
});
example, err := checkpoint.NewManagementUserTemplate(ctx, "managementUserTemplateResource", &checkpoint.ManagementUserTemplateArgs{
AllowedLocations: pulumi.StringMap{
"string": pulumi.String("string"),
},
AuthenticationMethod: pulumi.String("string"),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
ConnectDaily: pulumi.Bool(false),
ConnectOnDays: pulumi.StringArray{
pulumi.String("string"),
},
Encryption: pulumi.StringMap{
"string": pulumi.String("string"),
},
ExpirationByGlobalProperties: pulumi.Bool(false),
ExpirationDate: pulumi.String("string"),
FromHour: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementUserTemplateId: pulumi.String("string"),
Name: pulumi.String("string"),
RadiusServer: pulumi.String("string"),
TacacsServer: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
ToHour: pulumi.String("string"),
})
var managementUserTemplateResource = new ManagementUserTemplate("managementUserTemplateResource", ManagementUserTemplateArgs.builder()
.allowedLocations(Map.of("string", "string"))
.authenticationMethod("string")
.color("string")
.comments("string")
.connectDaily(false)
.connectOnDays("string")
.encryption(Map.of("string", "string"))
.expirationByGlobalProperties(false)
.expirationDate("string")
.fromHour("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.managementUserTemplateId("string")
.name("string")
.radiusServer("string")
.tacacsServer("string")
.tags("string")
.toHour("string")
.build());
management_user_template_resource = checkpoint.ManagementUserTemplate("managementUserTemplateResource",
allowed_locations={
"string": "string",
},
authentication_method="string",
color="string",
comments="string",
connect_daily=False,
connect_on_days=["string"],
encryption={
"string": "string",
},
expiration_by_global_properties=False,
expiration_date="string",
from_hour="string",
ignore_errors=False,
ignore_warnings=False,
management_user_template_id="string",
name="string",
radius_server="string",
tacacs_server="string",
tags=["string"],
to_hour="string")
const managementUserTemplateResource = new checkpoint.ManagementUserTemplate("managementUserTemplateResource", {
allowedLocations: {
string: "string",
},
authenticationMethod: "string",
color: "string",
comments: "string",
connectDaily: false,
connectOnDays: ["string"],
encryption: {
string: "string",
},
expirationByGlobalProperties: false,
expirationDate: "string",
fromHour: "string",
ignoreErrors: false,
ignoreWarnings: false,
managementUserTemplateId: "string",
name: "string",
radiusServer: "string",
tacacsServer: "string",
tags: ["string"],
toHour: "string",
});
type: checkpoint:ManagementUserTemplate
properties:
allowedLocations:
string: string
authenticationMethod: string
color: string
comments: string
connectDaily: false
connectOnDays:
- string
encryption:
string: string
expirationByGlobalProperties: false
expirationDate: string
fromHour: string
ignoreErrors: false
ignoreWarnings: false
managementUserTemplateId: string
name: string
radiusServer: string
tacacsServer: string
tags:
- string
toHour: string
ManagementUserTemplate 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 ManagementUserTemplate resource accepts the following input properties:
- Allowed
Locations Dictionary<string, string> - User allowed locations. allowed_locations blocks are documented below.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object.
- Comments string
- Comments string.
- Connect
Daily bool - Connect every day.
- Connect
On List<string>Days - Days users allow to connect.
- Encryption Dictionary<string, string>
- User encryption. encryption blocks are documented below.
- Expiration
By boolGlobal Properties - Expiration date according to global properties.
- Expiration
Date string - Expiration date in format: yyyy-MM-dd.
- From
Hour string - Allow users connect from hour.
- 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
User stringTemplate Id - Name string
- Object name.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<string>
- Collection of tag identifiers.
- To
Hour string - Allow users connect until hour.
- Allowed
Locations map[string]string - User allowed locations. allowed_locations blocks are documented below.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object.
- Comments string
- Comments string.
- Connect
Daily bool - Connect every day.
- Connect
On []stringDays - Days users allow to connect.
- Encryption map[string]string
- User encryption. encryption blocks are documented below.
- Expiration
By boolGlobal Properties - Expiration date according to global properties.
- Expiration
Date string - Expiration date in format: yyyy-MM-dd.
- From
Hour string - Allow users connect from hour.
- 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
User stringTemplate Id - Name string
- Object name.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- []string
- Collection of tag identifiers.
- To
Hour string - Allow users connect until hour.
- allowed
Locations Map<String,String> - User allowed locations. allowed_locations blocks are documented below.
- authentication
Method String - Authentication method.
- color String
- Color of the object.
- comments String
- Comments string.
- connect
Daily Boolean - Connect every day.
- connect
On List<String>Days - Days users allow to connect.
- encryption Map<String,String>
- User encryption. encryption blocks are documented below.
- expiration
By BooleanGlobal Properties - Expiration date according to global properties.
- expiration
Date String - Expiration date in format: yyyy-MM-dd.
- from
Hour String - Allow users connect from hour.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
User StringTemplate Id - name String
- Object name.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
- to
Hour String - Allow users connect until hour.
- allowed
Locations {[key: string]: string} - User allowed locations. allowed_locations blocks are documented below.
- authentication
Method string - Authentication method.
- color string
- Color of the object.
- comments string
- Comments string.
- connect
Daily boolean - Connect every day.
- connect
On string[]Days - Days users allow to connect.
- encryption {[key: string]: string}
- User encryption. encryption blocks are documented below.
- expiration
By booleanGlobal Properties - Expiration date according to global properties.
- expiration
Date string - Expiration date in format: yyyy-MM-dd.
- from
Hour string - Allow users connect from hour.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
User stringTemplate Id - name string
- Object name.
- radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- string[]
- Collection of tag identifiers.
- to
Hour string - Allow users connect until hour.
- allowed_
locations Mapping[str, str] - User allowed locations. allowed_locations blocks are documented below.
- authentication_
method str - Authentication method.
- color str
- Color of the object.
- comments str
- Comments string.
- connect_
daily bool - Connect every day.
- connect_
on_ Sequence[str]days - Days users allow to connect.
- encryption Mapping[str, str]
- User encryption. encryption blocks are documented below.
- expiration_
by_ boolglobal_ properties - Expiration date according to global properties.
- expiration_
date str - Expiration date in format: yyyy-MM-dd.
- from_
hour str - Allow users connect from hour.
- 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_
user_ strtemplate_ id - name str
- Object name.
- radius_
server str - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs_
server str - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- Sequence[str]
- Collection of tag identifiers.
- to_
hour str - Allow users connect until hour.
- allowed
Locations Map<String> - User allowed locations. allowed_locations blocks are documented below.
- authentication
Method String - Authentication method.
- color String
- Color of the object.
- comments String
- Comments string.
- connect
Daily Boolean - Connect every day.
- connect
On List<String>Days - Days users allow to connect.
- encryption Map<String>
- User encryption. encryption blocks are documented below.
- expiration
By BooleanGlobal Properties - Expiration date according to global properties.
- expiration
Date String - Expiration date in format: yyyy-MM-dd.
- from
Hour String - Allow users connect from hour.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
User StringTemplate Id - name String
- Object name.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
- to
Hour String - Allow users connect until hour.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementUserTemplate 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 ManagementUserTemplate Resource
Get an existing ManagementUserTemplate 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?: ManagementUserTemplateState, opts?: CustomResourceOptions): ManagementUserTemplate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allowed_locations: Optional[Mapping[str, str]] = None,
authentication_method: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
connect_daily: Optional[bool] = None,
connect_on_days: Optional[Sequence[str]] = None,
encryption: Optional[Mapping[str, str]] = None,
expiration_by_global_properties: Optional[bool] = None,
expiration_date: Optional[str] = None,
from_hour: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_user_template_id: Optional[str] = None,
name: Optional[str] = None,
radius_server: Optional[str] = None,
tacacs_server: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
to_hour: Optional[str] = None) -> ManagementUserTemplate
func GetManagementUserTemplate(ctx *Context, name string, id IDInput, state *ManagementUserTemplateState, opts ...ResourceOption) (*ManagementUserTemplate, error)
public static ManagementUserTemplate Get(string name, Input<string> id, ManagementUserTemplateState? state, CustomResourceOptions? opts = null)
public static ManagementUserTemplate get(String name, Output<String> id, ManagementUserTemplateState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementUserTemplate 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.
- Allowed
Locations Dictionary<string, string> - User allowed locations. allowed_locations blocks are documented below.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object.
- Comments string
- Comments string.
- Connect
Daily bool - Connect every day.
- Connect
On List<string>Days - Days users allow to connect.
- Encryption Dictionary<string, string>
- User encryption. encryption blocks are documented below.
- Expiration
By boolGlobal Properties - Expiration date according to global properties.
- Expiration
Date string - Expiration date in format: yyyy-MM-dd.
- From
Hour string - Allow users connect from hour.
- 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
User stringTemplate Id - Name string
- Object name.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<string>
- Collection of tag identifiers.
- To
Hour string - Allow users connect until hour.
- Allowed
Locations map[string]string - User allowed locations. allowed_locations blocks are documented below.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object.
- Comments string
- Comments string.
- Connect
Daily bool - Connect every day.
- Connect
On []stringDays - Days users allow to connect.
- Encryption map[string]string
- User encryption. encryption blocks are documented below.
- Expiration
By boolGlobal Properties - Expiration date according to global properties.
- Expiration
Date string - Expiration date in format: yyyy-MM-dd.
- From
Hour string - Allow users connect from hour.
- 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
User stringTemplate Id - Name string
- Object name.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- []string
- Collection of tag identifiers.
- To
Hour string - Allow users connect until hour.
- allowed
Locations Map<String,String> - User allowed locations. allowed_locations blocks are documented below.
- authentication
Method String - Authentication method.
- color String
- Color of the object.
- comments String
- Comments string.
- connect
Daily Boolean - Connect every day.
- connect
On List<String>Days - Days users allow to connect.
- encryption Map<String,String>
- User encryption. encryption blocks are documented below.
- expiration
By BooleanGlobal Properties - Expiration date according to global properties.
- expiration
Date String - Expiration date in format: yyyy-MM-dd.
- from
Hour String - Allow users connect from hour.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
User StringTemplate Id - name String
- Object name.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
- to
Hour String - Allow users connect until hour.
- allowed
Locations {[key: string]: string} - User allowed locations. allowed_locations blocks are documented below.
- authentication
Method string - Authentication method.
- color string
- Color of the object.
- comments string
- Comments string.
- connect
Daily boolean - Connect every day.
- connect
On string[]Days - Days users allow to connect.
- encryption {[key: string]: string}
- User encryption. encryption blocks are documented below.
- expiration
By booleanGlobal Properties - Expiration date according to global properties.
- expiration
Date string - Expiration date in format: yyyy-MM-dd.
- from
Hour string - Allow users connect from hour.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
User stringTemplate Id - name string
- Object name.
- radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- string[]
- Collection of tag identifiers.
- to
Hour string - Allow users connect until hour.
- allowed_
locations Mapping[str, str] - User allowed locations. allowed_locations blocks are documented below.
- authentication_
method str - Authentication method.
- color str
- Color of the object.
- comments str
- Comments string.
- connect_
daily bool - Connect every day.
- connect_
on_ Sequence[str]days - Days users allow to connect.
- encryption Mapping[str, str]
- User encryption. encryption blocks are documented below.
- expiration_
by_ boolglobal_ properties - Expiration date according to global properties.
- expiration_
date str - Expiration date in format: yyyy-MM-dd.
- from_
hour str - Allow users connect from hour.
- 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_
user_ strtemplate_ id - name str
- Object name.
- radius_
server str - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs_
server str - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- Sequence[str]
- Collection of tag identifiers.
- to_
hour str - Allow users connect until hour.
- allowed
Locations Map<String> - User allowed locations. allowed_locations blocks are documented below.
- authentication
Method String - Authentication method.
- color String
- Color of the object.
- comments String
- Comments string.
- connect
Daily Boolean - Connect every day.
- connect
On List<String>Days - Days users allow to connect.
- encryption Map<String>
- User encryption. encryption blocks are documented below.
- expiration
By BooleanGlobal Properties - Expiration date according to global properties.
- expiration
Date String - Expiration date in format: yyyy-MM-dd.
- from
Hour String - Allow users connect from hour.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
User StringTemplate Id - name String
- Object name.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
- to
Hour String - Allow users connect until hour.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.