1. Packages
  2. Packages
  3. Elasticstack Provider
  4. API Docs
  5. KibanaSecurityList
Viewing docs for elasticstack 0.15.0
published on Thursday, May 14, 2026 by elastic
Viewing docs for elasticstack 0.15.0
published on Thursday, May 14, 2026 by elastic

    Manages Kibana security lists (also known as value lists). Security lists are used by exception items to define sets of values for matching or excluding in security rules.

    Relevant Kibana docs can be found here.

    Notes

    • Security lists define the type of data they can contain via the type attribute
    • Once created, the type of a list cannot be changed
    • Lists can be referenced by exception items to create more sophisticated matching rules
    • The list_id is auto-generated if not provided

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as elasticstack from "@pulumi/elasticstack";
    
    const ipList = new elasticstack.KibanaSecurityList("ip_list", {
        spaceId: "default",
        name: "Trusted IP Addresses",
        description: "List of trusted IP addresses for security rules",
        type: "ip",
    });
    
    import pulumi
    import pulumi_elasticstack as elasticstack
    
    ip_list = elasticstack.KibanaSecurityList("ip_list",
        space_id="default",
        name="Trusted IP Addresses",
        description="List of trusted IP addresses for security rules",
        type="ip")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/elasticstack/elasticstack"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := elasticstack.NewKibanaSecurityList(ctx, "ip_list", &elasticstack.KibanaSecurityListArgs{
    			SpaceId:     pulumi.String("default"),
    			Name:        pulumi.String("Trusted IP Addresses"),
    			Description: pulumi.String("List of trusted IP addresses for security rules"),
    			Type:        pulumi.String("ip"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Elasticstack = Pulumi.Elasticstack;
    
    return await Deployment.RunAsync(() => 
    {
        var ipList = new Elasticstack.KibanaSecurityList("ip_list", new()
        {
            SpaceId = "default",
            Name = "Trusted IP Addresses",
            Description = "List of trusted IP addresses for security rules",
            Type = "ip",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.elasticstack.KibanaSecurityList;
    import com.pulumi.elasticstack.KibanaSecurityListArgs;
    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 ipList = new KibanaSecurityList("ipList", KibanaSecurityListArgs.builder()
                .spaceId("default")
                .name("Trusted IP Addresses")
                .description("List of trusted IP addresses for security rules")
                .type("ip")
                .build());
    
        }
    }
    
    resources:
      ipList:
        type: elasticstack:KibanaSecurityList
        name: ip_list
        properties:
          spaceId: default
          name: Trusted IP Addresses
          description: List of trusted IP addresses for security rules
          type: ip
    
    Example coming soon!
    

    Create KibanaSecurityList Resource

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

    Constructor syntax

    new KibanaSecurityList(name: string, args: KibanaSecurityListArgs, opts?: CustomResourceOptions);
    @overload
    def KibanaSecurityList(resource_name: str,
                           args: KibanaSecurityListArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def KibanaSecurityList(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           description: Optional[str] = None,
                           type: Optional[str] = None,
                           kibana_connections: Optional[Sequence[KibanaSecurityListKibanaConnectionArgs]] = None,
                           kibana_security_list_id: Optional[str] = None,
                           list_id: Optional[str] = None,
                           meta: Optional[str] = None,
                           name: Optional[str] = None,
                           space_id: Optional[str] = None,
                           version: Optional[float] = None)
    func NewKibanaSecurityList(ctx *Context, name string, args KibanaSecurityListArgs, opts ...ResourceOption) (*KibanaSecurityList, error)
    public KibanaSecurityList(string name, KibanaSecurityListArgs args, CustomResourceOptions? opts = null)
    public KibanaSecurityList(String name, KibanaSecurityListArgs args)
    public KibanaSecurityList(String name, KibanaSecurityListArgs args, CustomResourceOptions options)
    
    type: elasticstack:KibanaSecurityList
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "elasticstack_kibanasecuritylist" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args KibanaSecurityListArgs
    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 KibanaSecurityListArgs
    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 KibanaSecurityListArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KibanaSecurityListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KibanaSecurityListArgs
    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 kibanaSecurityListResource = new Elasticstack.KibanaSecurityList("kibanaSecurityListResource", new()
    {
        Description = "string",
        Type = "string",
        KibanaConnections = new[]
        {
            new Elasticstack.Inputs.KibanaSecurityListKibanaConnectionArgs
            {
                ApiKey = "string",
                BearerToken = "string",
                CaCerts = new[]
                {
                    "string",
                },
                Endpoints = new[]
                {
                    "string",
                },
                Insecure = false,
                Password = "string",
                Username = "string",
            },
        },
        KibanaSecurityListId = "string",
        ListId = "string",
        Meta = "string",
        Name = "string",
        SpaceId = "string",
        Version = 0,
    });
    
    example, err := elasticstack.NewKibanaSecurityList(ctx, "kibanaSecurityListResource", &elasticstack.KibanaSecurityListArgs{
    	Description: pulumi.String("string"),
    	Type:        pulumi.String("string"),
    	KibanaConnections: elasticstack.KibanaSecurityListKibanaConnectionArray{
    		&elasticstack.KibanaSecurityListKibanaConnectionArgs{
    			ApiKey:      pulumi.String("string"),
    			BearerToken: pulumi.String("string"),
    			CaCerts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Endpoints: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Insecure: pulumi.Bool(false),
    			Password: pulumi.String("string"),
    			Username: pulumi.String("string"),
    		},
    	},
    	KibanaSecurityListId: pulumi.String("string"),
    	ListId:               pulumi.String("string"),
    	Meta:                 pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	SpaceId:              pulumi.String("string"),
    	Version:              pulumi.Float64(0),
    })
    
    resource "elasticstack_kibanasecuritylist" "kibanaSecurityListResource" {
      description = "string"
      type        = "string"
      kibana_connections {
        api_key      = "string"
        bearer_token = "string"
        ca_certs     = ["string"]
        endpoints    = ["string"]
        insecure     = false
        password     = "string"
        username     = "string"
      }
      kibana_security_list_id = "string"
      list_id                 = "string"
      meta                    = "string"
      name                    = "string"
      space_id                = "string"
      version                 = 0
    }
    
    var kibanaSecurityListResource = new KibanaSecurityList("kibanaSecurityListResource", KibanaSecurityListArgs.builder()
        .description("string")
        .type("string")
        .kibanaConnections(KibanaSecurityListKibanaConnectionArgs.builder()
            .apiKey("string")
            .bearerToken("string")
            .caCerts("string")
            .endpoints("string")
            .insecure(false)
            .password("string")
            .username("string")
            .build())
        .kibanaSecurityListId("string")
        .listId("string")
        .meta("string")
        .name("string")
        .spaceId("string")
        .version(0.0)
        .build());
    
    kibana_security_list_resource = elasticstack.KibanaSecurityList("kibanaSecurityListResource",
        description="string",
        type="string",
        kibana_connections=[{
            "api_key": "string",
            "bearer_token": "string",
            "ca_certs": ["string"],
            "endpoints": ["string"],
            "insecure": False,
            "password": "string",
            "username": "string",
        }],
        kibana_security_list_id="string",
        list_id="string",
        meta="string",
        name="string",
        space_id="string",
        version=float(0))
    
    const kibanaSecurityListResource = new elasticstack.KibanaSecurityList("kibanaSecurityListResource", {
        description: "string",
        type: "string",
        kibanaConnections: [{
            apiKey: "string",
            bearerToken: "string",
            caCerts: ["string"],
            endpoints: ["string"],
            insecure: false,
            password: "string",
            username: "string",
        }],
        kibanaSecurityListId: "string",
        listId: "string",
        meta: "string",
        name: "string",
        spaceId: "string",
        version: 0,
    });
    
    type: elasticstack:KibanaSecurityList
    properties:
        description: string
        kibanaConnections:
            - apiKey: string
              bearerToken: string
              caCerts:
                - string
              endpoints:
                - string
              insecure: false
              password: string
              username: string
        kibanaSecurityListId: string
        listId: string
        meta: string
        name: string
        spaceId: string
        type: string
        version: 0
    

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

    Description string
    Describes the security list.
    Type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    KibanaConnections List<KibanaSecurityListKibanaConnection>
    Kibana connection configuration block.
    KibanaSecurityListId string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    ListId string
    The value list's human-readable identifier.
    Meta string
    Placeholder for metadata about the value list as JSON string.
    Name string
    The name of the security list.
    SpaceId string
    An identifier for the space. If space_id is not provided, the default space is used.
    Version double
    The document version number.
    Description string
    Describes the security list.
    Type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    KibanaConnections []KibanaSecurityListKibanaConnectionArgs
    Kibana connection configuration block.
    KibanaSecurityListId string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    ListId string
    The value list's human-readable identifier.
    Meta string
    Placeholder for metadata about the value list as JSON string.
    Name string
    The name of the security list.
    SpaceId string
    An identifier for the space. If space_id is not provided, the default space is used.
    Version float64
    The document version number.
    description string
    Describes the security list.
    type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    kibana_connections list(object)
    Kibana connection configuration block.
    kibana_security_list_id string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    list_id string
    The value list's human-readable identifier.
    meta string
    Placeholder for metadata about the value list as JSON string.
    name string
    The name of the security list.
    space_id string
    An identifier for the space. If space_id is not provided, the default space is used.
    version number
    The document version number.
    description String
    Describes the security list.
    type String
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    kibanaConnections List<KibanaSecurityListKibanaConnection>
    Kibana connection configuration block.
    kibanaSecurityListId String
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    listId String
    The value list's human-readable identifier.
    meta String
    Placeholder for metadata about the value list as JSON string.
    name String
    The name of the security list.
    spaceId String
    An identifier for the space. If space_id is not provided, the default space is used.
    version Double
    The document version number.
    description string
    Describes the security list.
    type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    kibanaConnections KibanaSecurityListKibanaConnection[]
    Kibana connection configuration block.
    kibanaSecurityListId string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    listId string
    The value list's human-readable identifier.
    meta string
    Placeholder for metadata about the value list as JSON string.
    name string
    The name of the security list.
    spaceId string
    An identifier for the space. If space_id is not provided, the default space is used.
    version number
    The document version number.
    description str
    Describes the security list.
    type str
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    kibana_connections Sequence[KibanaSecurityListKibanaConnectionArgs]
    Kibana connection configuration block.
    kibana_security_list_id str
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    list_id str
    The value list's human-readable identifier.
    meta str
    Placeholder for metadata about the value list as JSON string.
    name str
    The name of the security list.
    space_id str
    An identifier for the space. If space_id is not provided, the default space is used.
    version float
    The document version number.
    description String
    Describes the security list.
    type String
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    kibanaConnections List<Property Map>
    Kibana connection configuration block.
    kibanaSecurityListId String
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    listId String
    The value list's human-readable identifier.
    meta String
    Placeholder for metadata about the value list as JSON string.
    name String
    The name of the security list.
    spaceId String
    An identifier for the space. If space_id is not provided, the default space is used.
    version Number
    The document version number.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KibanaSecurityList resource produces the following output properties:

    CreatedAt string
    The timestamp of when the list was created.
    CreatedBy string
    The user who created the list.
    Id string
    The provider-assigned unique ID for this managed resource.
    Immutable bool
    Whether the list is immutable.
    TieBreakerId string
    Field used in search to ensure all containers are sorted and returned correctly.
    UpdatedAt string
    The timestamp of when the list was last updated.
    UpdatedBy string
    The user who last updated the list.
    VersionId string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    CreatedAt string
    The timestamp of when the list was created.
    CreatedBy string
    The user who created the list.
    Id string
    The provider-assigned unique ID for this managed resource.
    Immutable bool
    Whether the list is immutable.
    TieBreakerId string
    Field used in search to ensure all containers are sorted and returned correctly.
    UpdatedAt string
    The timestamp of when the list was last updated.
    UpdatedBy string
    The user who last updated the list.
    VersionId string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    created_at string
    The timestamp of when the list was created.
    created_by string
    The user who created the list.
    id string
    The provider-assigned unique ID for this managed resource.
    immutable bool
    Whether the list is immutable.
    tie_breaker_id string
    Field used in search to ensure all containers are sorted and returned correctly.
    updated_at string
    The timestamp of when the list was last updated.
    updated_by string
    The user who last updated the list.
    version_id string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    createdAt String
    The timestamp of when the list was created.
    createdBy String
    The user who created the list.
    id String
    The provider-assigned unique ID for this managed resource.
    immutable Boolean
    Whether the list is immutable.
    tieBreakerId String
    Field used in search to ensure all containers are sorted and returned correctly.
    updatedAt String
    The timestamp of when the list was last updated.
    updatedBy String
    The user who last updated the list.
    versionId String
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    createdAt string
    The timestamp of when the list was created.
    createdBy string
    The user who created the list.
    id string
    The provider-assigned unique ID for this managed resource.
    immutable boolean
    Whether the list is immutable.
    tieBreakerId string
    Field used in search to ensure all containers are sorted and returned correctly.
    updatedAt string
    The timestamp of when the list was last updated.
    updatedBy string
    The user who last updated the list.
    versionId string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    created_at str
    The timestamp of when the list was created.
    created_by str
    The user who created the list.
    id str
    The provider-assigned unique ID for this managed resource.
    immutable bool
    Whether the list is immutable.
    tie_breaker_id str
    Field used in search to ensure all containers are sorted and returned correctly.
    updated_at str
    The timestamp of when the list was last updated.
    updated_by str
    The user who last updated the list.
    version_id str
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    createdAt String
    The timestamp of when the list was created.
    createdBy String
    The user who created the list.
    id String
    The provider-assigned unique ID for this managed resource.
    immutable Boolean
    Whether the list is immutable.
    tieBreakerId String
    Field used in search to ensure all containers are sorted and returned correctly.
    updatedAt String
    The timestamp of when the list was last updated.
    updatedBy String
    The user who last updated the list.
    versionId String
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.

    Look up Existing KibanaSecurityList Resource

    Get an existing KibanaSecurityList 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?: KibanaSecurityListState, opts?: CustomResourceOptions): KibanaSecurityList
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            created_by: Optional[str] = None,
            description: Optional[str] = None,
            immutable: Optional[bool] = None,
            kibana_connections: Optional[Sequence[KibanaSecurityListKibanaConnectionArgs]] = None,
            kibana_security_list_id: Optional[str] = None,
            list_id: Optional[str] = None,
            meta: Optional[str] = None,
            name: Optional[str] = None,
            space_id: Optional[str] = None,
            tie_breaker_id: Optional[str] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None,
            updated_by: Optional[str] = None,
            version: Optional[float] = None,
            version_id: Optional[str] = None) -> KibanaSecurityList
    func GetKibanaSecurityList(ctx *Context, name string, id IDInput, state *KibanaSecurityListState, opts ...ResourceOption) (*KibanaSecurityList, error)
    public static KibanaSecurityList Get(string name, Input<string> id, KibanaSecurityListState? state, CustomResourceOptions? opts = null)
    public static KibanaSecurityList get(String name, Output<String> id, KibanaSecurityListState state, CustomResourceOptions options)
    resources:  _:    type: elasticstack:KibanaSecurityList    get:      id: ${id}
    import {
      to = elasticstack_kibanasecuritylist.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:
    CreatedAt string
    The timestamp of when the list was created.
    CreatedBy string
    The user who created the list.
    Description string
    Describes the security list.
    Immutable bool
    Whether the list is immutable.
    KibanaConnections List<KibanaSecurityListKibanaConnection>
    Kibana connection configuration block.
    KibanaSecurityListId string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    ListId string
    The value list's human-readable identifier.
    Meta string
    Placeholder for metadata about the value list as JSON string.
    Name string
    The name of the security list.
    SpaceId string
    An identifier for the space. If space_id is not provided, the default space is used.
    TieBreakerId string
    Field used in search to ensure all containers are sorted and returned correctly.
    Type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    UpdatedAt string
    The timestamp of when the list was last updated.
    UpdatedBy string
    The user who last updated the list.
    Version double
    The document version number.
    VersionId string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    CreatedAt string
    The timestamp of when the list was created.
    CreatedBy string
    The user who created the list.
    Description string
    Describes the security list.
    Immutable bool
    Whether the list is immutable.
    KibanaConnections []KibanaSecurityListKibanaConnectionArgs
    Kibana connection configuration block.
    KibanaSecurityListId string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    ListId string
    The value list's human-readable identifier.
    Meta string
    Placeholder for metadata about the value list as JSON string.
    Name string
    The name of the security list.
    SpaceId string
    An identifier for the space. If space_id is not provided, the default space is used.
    TieBreakerId string
    Field used in search to ensure all containers are sorted and returned correctly.
    Type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    UpdatedAt string
    The timestamp of when the list was last updated.
    UpdatedBy string
    The user who last updated the list.
    Version float64
    The document version number.
    VersionId string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    created_at string
    The timestamp of when the list was created.
    created_by string
    The user who created the list.
    description string
    Describes the security list.
    immutable bool
    Whether the list is immutable.
    kibana_connections list(object)
    Kibana connection configuration block.
    kibana_security_list_id string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    list_id string
    The value list's human-readable identifier.
    meta string
    Placeholder for metadata about the value list as JSON string.
    name string
    The name of the security list.
    space_id string
    An identifier for the space. If space_id is not provided, the default space is used.
    tie_breaker_id string
    Field used in search to ensure all containers are sorted and returned correctly.
    type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    updated_at string
    The timestamp of when the list was last updated.
    updated_by string
    The user who last updated the list.
    version number
    The document version number.
    version_id string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    createdAt String
    The timestamp of when the list was created.
    createdBy String
    The user who created the list.
    description String
    Describes the security list.
    immutable Boolean
    Whether the list is immutable.
    kibanaConnections List<KibanaSecurityListKibanaConnection>
    Kibana connection configuration block.
    kibanaSecurityListId String
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    listId String
    The value list's human-readable identifier.
    meta String
    Placeholder for metadata about the value list as JSON string.
    name String
    The name of the security list.
    spaceId String
    An identifier for the space. If space_id is not provided, the default space is used.
    tieBreakerId String
    Field used in search to ensure all containers are sorted and returned correctly.
    type String
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    updatedAt String
    The timestamp of when the list was last updated.
    updatedBy String
    The user who last updated the list.
    version Double
    The document version number.
    versionId String
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    createdAt string
    The timestamp of when the list was created.
    createdBy string
    The user who created the list.
    description string
    Describes the security list.
    immutable boolean
    Whether the list is immutable.
    kibanaConnections KibanaSecurityListKibanaConnection[]
    Kibana connection configuration block.
    kibanaSecurityListId string
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    listId string
    The value list's human-readable identifier.
    meta string
    Placeholder for metadata about the value list as JSON string.
    name string
    The name of the security list.
    spaceId string
    An identifier for the space. If space_id is not provided, the default space is used.
    tieBreakerId string
    Field used in search to ensure all containers are sorted and returned correctly.
    type string
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    updatedAt string
    The timestamp of when the list was last updated.
    updatedBy string
    The user who last updated the list.
    version number
    The document version number.
    versionId string
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    created_at str
    The timestamp of when the list was created.
    created_by str
    The user who created the list.
    description str
    Describes the security list.
    immutable bool
    Whether the list is immutable.
    kibana_connections Sequence[KibanaSecurityListKibanaConnectionArgs]
    Kibana connection configuration block.
    kibana_security_list_id str
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    list_id str
    The value list's human-readable identifier.
    meta str
    Placeholder for metadata about the value list as JSON string.
    name str
    The name of the security list.
    space_id str
    An identifier for the space. If space_id is not provided, the default space is used.
    tie_breaker_id str
    Field used in search to ensure all containers are sorted and returned correctly.
    type str
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    updated_at str
    The timestamp of when the list was last updated.
    updated_by str
    The user who last updated the list.
    version float
    The document version number.
    version_id str
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.
    createdAt String
    The timestamp of when the list was created.
    createdBy String
    The user who created the list.
    description String
    Describes the security list.
    immutable Boolean
    Whether the list is immutable.
    kibanaConnections List<Property Map>
    Kibana connection configuration block.
    kibanaSecurityListId String
    The unique identifier of the security list (auto-generated by Kibana if not specified).
    listId String
    The value list's human-readable identifier.
    meta String
    Placeholder for metadata about the value list as JSON string.
    name String
    The name of the security list.
    spaceId String
    An identifier for the space. If space_id is not provided, the default space is used.
    tieBreakerId String
    Field used in search to ensure all containers are sorted and returned correctly.
    type String
    Specifies the Elasticsearch data type of values the list contains. Valid values include: binary, boolean, byte, date, date_nanos, date_range, double, double_range, float, float_range, geo_point, geo_shape, half_float, integer, integer_range, ip, ip_range, keyword, long, long_range, shape, short, text.
    updatedAt String
    The timestamp of when the list was last updated.
    updatedBy String
    The user who last updated the list.
    version Number
    The document version number.
    versionId String
    The version id, normally returned by the API when the document is retrieved. Use it to ensure updates are done against the latest version.

    Supporting Types

    KibanaSecurityListKibanaConnection, KibanaSecurityListKibanaConnectionArgs

    ApiKey string
    API Key to use for authentication to Kibana
    BearerToken string
    Bearer Token to use for authentication to Kibana
    CaCerts List<string>
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    Endpoints List<string>
    Insecure bool
    Disable TLS certificate validation
    Password string
    Password to use for API authentication to Kibana.
    Username string
    Username to use for API authentication to Kibana.
    ApiKey string
    API Key to use for authentication to Kibana
    BearerToken string
    Bearer Token to use for authentication to Kibana
    CaCerts []string
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    Endpoints []string
    Insecure bool
    Disable TLS certificate validation
    Password string
    Password to use for API authentication to Kibana.
    Username string
    Username to use for API authentication to Kibana.
    api_key string
    API Key to use for authentication to Kibana
    bearer_token string
    Bearer Token to use for authentication to Kibana
    ca_certs list(string)
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    endpoints list(string)
    insecure bool
    Disable TLS certificate validation
    password string
    Password to use for API authentication to Kibana.
    username string
    Username to use for API authentication to Kibana.
    apiKey String
    API Key to use for authentication to Kibana
    bearerToken String
    Bearer Token to use for authentication to Kibana
    caCerts List<String>
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    endpoints List<String>
    insecure Boolean
    Disable TLS certificate validation
    password String
    Password to use for API authentication to Kibana.
    username String
    Username to use for API authentication to Kibana.
    apiKey string
    API Key to use for authentication to Kibana
    bearerToken string
    Bearer Token to use for authentication to Kibana
    caCerts string[]
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    endpoints string[]
    insecure boolean
    Disable TLS certificate validation
    password string
    Password to use for API authentication to Kibana.
    username string
    Username to use for API authentication to Kibana.
    api_key str
    API Key to use for authentication to Kibana
    bearer_token str
    Bearer Token to use for authentication to Kibana
    ca_certs Sequence[str]
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    endpoints Sequence[str]
    insecure bool
    Disable TLS certificate validation
    password str
    Password to use for API authentication to Kibana.
    username str
    Username to use for API authentication to Kibana.
    apiKey String
    API Key to use for authentication to Kibana
    bearerToken String
    Bearer Token to use for authentication to Kibana
    caCerts List<String>
    A list of paths to CA certificates to validate the certificate presented by the Kibana server.
    endpoints List<String>
    insecure Boolean
    Disable TLS certificate validation
    password String
    Password to use for API authentication to Kibana.
    username String
    Username to use for API authentication to Kibana.

    Package Details

    Repository
    elasticstack elastic/terraform-provider-elasticstack
    License
    Notes
    This Pulumi package is based on the elasticstack Terraform Provider.
    Viewing docs for elasticstack 0.15.0
    published on Thursday, May 14, 2026 by elastic
      Try Pulumi Cloud free. Your team will thank you.