1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaTacacs
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Tacacs.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaTacacs("example", {});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaTacacs("example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewGaiaTacacs(ctx, "example", nil)
    		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.GaiaTacacs("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaTacacs;
    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 GaiaTacacs("example");
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaTacacs
    
    Example coming soon!
    

    Create GaiaTacacs Resource

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

    Constructor syntax

    new GaiaTacacs(name: string, args?: GaiaTacacsArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaTacacs(resource_name: str,
                   args: Optional[GaiaTacacsArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaTacacs(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   debug: Optional[bool] = None,
                   enabled: Optional[bool] = None,
                   gaia_tacacs_id: Optional[str] = None,
                   member_id: Optional[str] = None,
                   servers: Optional[Sequence[GaiaTacacsServerArgs]] = None,
                   super_user_uid: Optional[str] = None)
    func NewGaiaTacacs(ctx *Context, name string, args *GaiaTacacsArgs, opts ...ResourceOption) (*GaiaTacacs, error)
    public GaiaTacacs(string name, GaiaTacacsArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaTacacs(String name, GaiaTacacsArgs args)
    public GaiaTacacs(String name, GaiaTacacsArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaTacacs
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiatacacs" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaTacacsArgs
    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 GaiaTacacsArgs
    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 GaiaTacacsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaTacacsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaTacacsArgs
    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 gaiaTacacsResource = new Checkpoint.GaiaTacacs("gaiaTacacsResource", new()
    {
        Debug = false,
        Enabled = false,
        GaiaTacacsId = "string",
        MemberId = "string",
        Servers = new[]
        {
            new Checkpoint.Inputs.GaiaTacacsServerArgs
            {
                Address = "string",
                Priority = 0,
                Secret = "string",
                Timeout = 0,
            },
        },
        SuperUserUid = "string",
    });
    
    example, err := checkpoint.NewGaiaTacacs(ctx, "gaiaTacacsResource", &checkpoint.GaiaTacacsArgs{
    	Debug:        pulumi.Bool(false),
    	Enabled:      pulumi.Bool(false),
    	GaiaTacacsId: pulumi.String("string"),
    	MemberId:     pulumi.String("string"),
    	Servers: checkpoint.GaiaTacacsServerArray{
    		&checkpoint.GaiaTacacsServerArgs{
    			Address:  pulumi.String("string"),
    			Priority: pulumi.Float64(0),
    			Secret:   pulumi.String("string"),
    			Timeout:  pulumi.Float64(0),
    		},
    	},
    	SuperUserUid: pulumi.String("string"),
    })
    
    resource "checkpoint_gaiatacacs" "gaiaTacacsResource" {
      debug          = false
      enabled        = false
      gaia_tacacs_id = "string"
      member_id      = "string"
      servers {
        address  = "string"
        priority = 0
        secret   = "string"
        timeout  = 0
      }
      super_user_uid = "string"
    }
    
    var gaiaTacacsResource = new GaiaTacacs("gaiaTacacsResource", GaiaTacacsArgs.builder()
        .debug(false)
        .enabled(false)
        .gaiaTacacsId("string")
        .memberId("string")
        .servers(GaiaTacacsServerArgs.builder()
            .address("string")
            .priority(0.0)
            .secret("string")
            .timeout(0.0)
            .build())
        .superUserUid("string")
        .build());
    
    gaia_tacacs_resource = checkpoint.GaiaTacacs("gaiaTacacsResource",
        debug=False,
        enabled=False,
        gaia_tacacs_id="string",
        member_id="string",
        servers=[{
            "address": "string",
            "priority": float(0),
            "secret": "string",
            "timeout": float(0),
        }],
        super_user_uid="string")
    
    const gaiaTacacsResource = new checkpoint.GaiaTacacs("gaiaTacacsResource", {
        debug: false,
        enabled: false,
        gaiaTacacsId: "string",
        memberId: "string",
        servers: [{
            address: "string",
            priority: 0,
            secret: "string",
            timeout: 0,
        }],
        superUserUid: "string",
    });
    
    type: checkpoint:GaiaTacacs
    properties:
        debug: false
        enabled: false
        gaiaTacacsId: string
        memberId: string
        servers:
            - address: string
              priority: 0
              secret: string
              timeout: 0
        superUserUid: string
    

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

    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    TACACS+ authentication state
    GaiaTacacsId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Servers List<GaiaTacacsServer>
    TACACS+ servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a TACACS+ user
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    TACACS+ authentication state
    GaiaTacacsId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Servers []GaiaTacacsServerArgs
    TACACS+ servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a TACACS+ user
    debug bool
    Enable debug logging for this resource.
    enabled bool
    TACACS+ authentication state
    gaia_tacacs_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers list(object)
    TACACS+ servers list servers blocks are documented below.
    super_user_uid string
    The UID that will be given to a TACACS+ user
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    TACACS+ authentication state
    gaiaTacacsId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers List<GaiaTacacsServer>
    TACACS+ servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a TACACS+ user
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    TACACS+ authentication state
    gaiaTacacsId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers GaiaTacacsServer[]
    TACACS+ servers list servers blocks are documented below.
    superUserUid string
    The UID that will be given to a TACACS+ user
    debug bool
    Enable debug logging for this resource.
    enabled bool
    TACACS+ authentication state
    gaia_tacacs_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers Sequence[GaiaTacacsServerArgs]
    TACACS+ servers list servers blocks are documented below.
    super_user_uid str
    The UID that will be given to a TACACS+ user
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    TACACS+ authentication state
    gaiaTacacsId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers List<Property Map>
    TACACS+ servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a TACACS+ user

    Outputs

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

    Get an existing GaiaTacacs 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?: GaiaTacacsState, opts?: CustomResourceOptions): GaiaTacacs
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            enabled: Optional[bool] = None,
            gaia_tacacs_id: Optional[str] = None,
            member_id: Optional[str] = None,
            servers: Optional[Sequence[GaiaTacacsServerArgs]] = None,
            super_user_uid: Optional[str] = None) -> GaiaTacacs
    func GetGaiaTacacs(ctx *Context, name string, id IDInput, state *GaiaTacacsState, opts ...ResourceOption) (*GaiaTacacs, error)
    public static GaiaTacacs Get(string name, Input<string> id, GaiaTacacsState? state, CustomResourceOptions? opts = null)
    public static GaiaTacacs get(String name, Output<String> id, GaiaTacacsState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaTacacs    get:      id: ${id}
    import {
      to = checkpoint_gaiatacacs.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    TACACS+ authentication state
    GaiaTacacsId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Servers List<GaiaTacacsServer>
    TACACS+ servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a TACACS+ user
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    TACACS+ authentication state
    GaiaTacacsId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Servers []GaiaTacacsServerArgs
    TACACS+ servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a TACACS+ user
    debug bool
    Enable debug logging for this resource.
    enabled bool
    TACACS+ authentication state
    gaia_tacacs_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers list(object)
    TACACS+ servers list servers blocks are documented below.
    super_user_uid string
    The UID that will be given to a TACACS+ user
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    TACACS+ authentication state
    gaiaTacacsId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers List<GaiaTacacsServer>
    TACACS+ servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a TACACS+ user
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    TACACS+ authentication state
    gaiaTacacsId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers GaiaTacacsServer[]
    TACACS+ servers list servers blocks are documented below.
    superUserUid string
    The UID that will be given to a TACACS+ user
    debug bool
    Enable debug logging for this resource.
    enabled bool
    TACACS+ authentication state
    gaia_tacacs_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers Sequence[GaiaTacacsServerArgs]
    TACACS+ servers list servers blocks are documented below.
    super_user_uid str
    The UID that will be given to a TACACS+ user
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    TACACS+ authentication state
    gaiaTacacsId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    servers List<Property Map>
    TACACS+ servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a TACACS+ user

    Supporting Types

    GaiaTacacsServer, GaiaTacacsServerArgs

    Address string
    The server address
    Priority double
    Server priority (lower values comes first)
    Secret string
    N/A
    Timeout double
    N/A
    Address string
    The server address
    Priority float64
    Server priority (lower values comes first)
    Secret string
    N/A
    Timeout float64
    N/A
    address string
    The server address
    priority number
    Server priority (lower values comes first)
    secret string
    N/A
    timeout number
    N/A
    address String
    The server address
    priority Double
    Server priority (lower values comes first)
    secret String
    N/A
    timeout Double
    N/A
    address string
    The server address
    priority number
    Server priority (lower values comes first)
    secret string
    N/A
    timeout number
    N/A
    address str
    The server address
    priority float
    Server priority (lower values comes first)
    secret str
    N/A
    timeout float
    N/A
    address String
    The server address
    priority Number
    Server priority (lower values comes first)
    secret String
    N/A
    timeout Number
    N/A

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial