1. Packages
  2. Packages
  3. Elasticstack Provider
  4. API Docs
  5. KibanaSecurityEntityStoreEntityLink
Viewing docs for elasticstack 0.16.2
published on Saturday, Jul 4, 2026 by elastic
Viewing docs for elasticstack 0.16.2
published on Saturday, Jul 4, 2026 by elastic

    Manages entity resolution links in the Kibana Entity Store. Links one or more alias entity identifiers to a single target (golden) entity, forming a resolution group. Requires Elastic Stack 9.1.0 or later.

    Create KibanaSecurityEntityStoreEntityLink Resource

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

    Constructor syntax

    new KibanaSecurityEntityStoreEntityLink(name: string, args: KibanaSecurityEntityStoreEntityLinkArgs, opts?: CustomResourceOptions);
    @overload
    def KibanaSecurityEntityStoreEntityLink(resource_name: str,
                                            args: KibanaSecurityEntityStoreEntityLinkArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def KibanaSecurityEntityStoreEntityLink(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            entity_ids: Optional[Sequence[str]] = None,
                                            target_id: Optional[str] = None,
                                            kibana_connections: Optional[Sequence[KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs]] = None,
                                            space_id: Optional[str] = None,
                                            timeouts: Optional[KibanaSecurityEntityStoreEntityLinkTimeoutsArgs] = None)
    func NewKibanaSecurityEntityStoreEntityLink(ctx *Context, name string, args KibanaSecurityEntityStoreEntityLinkArgs, opts ...ResourceOption) (*KibanaSecurityEntityStoreEntityLink, error)
    public KibanaSecurityEntityStoreEntityLink(string name, KibanaSecurityEntityStoreEntityLinkArgs args, CustomResourceOptions? opts = null)
    public KibanaSecurityEntityStoreEntityLink(String name, KibanaSecurityEntityStoreEntityLinkArgs args)
    public KibanaSecurityEntityStoreEntityLink(String name, KibanaSecurityEntityStoreEntityLinkArgs args, CustomResourceOptions options)
    
    type: elasticstack:KibanaSecurityEntityStoreEntityLink
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "elasticstack_kibanasecurityentitystoreentitylink" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args KibanaSecurityEntityStoreEntityLinkArgs
    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 KibanaSecurityEntityStoreEntityLinkArgs
    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 KibanaSecurityEntityStoreEntityLinkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KibanaSecurityEntityStoreEntityLinkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KibanaSecurityEntityStoreEntityLinkArgs
    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 kibanaSecurityEntityStoreEntityLinkResource = new Elasticstack.KibanaSecurityEntityStoreEntityLink("kibanaSecurityEntityStoreEntityLinkResource", new()
    {
        EntityIds = new[]
        {
            "string",
        },
        TargetId = "string",
        KibanaConnections = new[]
        {
            new Elasticstack.Inputs.KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs
            {
                ApiKey = "string",
                BearerToken = "string",
                CaCerts = new[]
                {
                    "string",
                },
                Endpoints = new[]
                {
                    "string",
                },
                Insecure = false,
                Password = "string",
                Username = "string",
            },
        },
        SpaceId = "string",
        Timeouts = new Elasticstack.Inputs.KibanaSecurityEntityStoreEntityLinkTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := elasticstack.NewKibanaSecurityEntityStoreEntityLink(ctx, "kibanaSecurityEntityStoreEntityLinkResource", &elasticstack.KibanaSecurityEntityStoreEntityLinkArgs{
    	EntityIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TargetId: pulumi.String("string"),
    	KibanaConnections: elasticstack.KibanaSecurityEntityStoreEntityLinkKibanaConnectionArray{
    		&elasticstack.KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs{
    			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"),
    		},
    	},
    	SpaceId: pulumi.String("string"),
    	Timeouts: &elasticstack.KibanaSecurityEntityStoreEntityLinkTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    resource "elasticstack_kibanasecurityentitystoreentitylink" "kibanaSecurityEntityStoreEntityLinkResource" {
      entity_ids = ["string"]
      target_id  = "string"
      kibana_connections {
        api_key      = "string"
        bearer_token = "string"
        ca_certs     = ["string"]
        endpoints    = ["string"]
        insecure     = false
        password     = "string"
        username     = "string"
      }
      space_id = "string"
      timeouts = {
        create = "string"
        delete = "string"
        read   = "string"
        update = "string"
      }
    }
    
    var kibanaSecurityEntityStoreEntityLinkResource = new KibanaSecurityEntityStoreEntityLink("kibanaSecurityEntityStoreEntityLinkResource", KibanaSecurityEntityStoreEntityLinkArgs.builder()
        .entityIds("string")
        .targetId("string")
        .kibanaConnections(KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs.builder()
            .apiKey("string")
            .bearerToken("string")
            .caCerts("string")
            .endpoints("string")
            .insecure(false)
            .password("string")
            .username("string")
            .build())
        .spaceId("string")
        .timeouts(KibanaSecurityEntityStoreEntityLinkTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    kibana_security_entity_store_entity_link_resource = elasticstack.KibanaSecurityEntityStoreEntityLink("kibanaSecurityEntityStoreEntityLinkResource",
        entity_ids=["string"],
        target_id="string",
        kibana_connections=[{
            "api_key": "string",
            "bearer_token": "string",
            "ca_certs": ["string"],
            "endpoints": ["string"],
            "insecure": False,
            "password": "string",
            "username": "string",
        }],
        space_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const kibanaSecurityEntityStoreEntityLinkResource = new elasticstack.KibanaSecurityEntityStoreEntityLink("kibanaSecurityEntityStoreEntityLinkResource", {
        entityIds: ["string"],
        targetId: "string",
        kibanaConnections: [{
            apiKey: "string",
            bearerToken: "string",
            caCerts: ["string"],
            endpoints: ["string"],
            insecure: false,
            password: "string",
            username: "string",
        }],
        spaceId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: elasticstack:KibanaSecurityEntityStoreEntityLink
    properties:
        entityIds:
            - string
        kibanaConnections:
            - apiKey: string
              bearerToken: string
              caCerts:
                - string
              endpoints:
                - string
              insecure: false
              password: string
              username: string
        spaceId: string
        targetId: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

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

    EntityIds List<string>
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    TargetId string
    The entity identifier that linked entities resolve to.
    KibanaConnections List<KibanaSecurityEntityStoreEntityLinkKibanaConnection>
    Kibana connection configuration block.
    SpaceId string
    An identifier for the space. If not provided, the default space is used.
    Timeouts KibanaSecurityEntityStoreEntityLinkTimeouts
    EntityIds []string
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    TargetId string
    The entity identifier that linked entities resolve to.
    KibanaConnections []KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs
    Kibana connection configuration block.
    SpaceId string
    An identifier for the space. If not provided, the default space is used.
    Timeouts KibanaSecurityEntityStoreEntityLinkTimeoutsArgs
    entity_ids list(string)
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    target_id string
    The entity identifier that linked entities resolve to.
    kibana_connections list(object)
    Kibana connection configuration block.
    space_id string
    An identifier for the space. If not provided, the default space is used.
    timeouts object
    entityIds List<String>
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    targetId String
    The entity identifier that linked entities resolve to.
    kibanaConnections List<KibanaSecurityEntityStoreEntityLinkKibanaConnection>
    Kibana connection configuration block.
    spaceId String
    An identifier for the space. If not provided, the default space is used.
    timeouts KibanaSecurityEntityStoreEntityLinkTimeouts
    entityIds string[]
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    targetId string
    The entity identifier that linked entities resolve to.
    kibanaConnections KibanaSecurityEntityStoreEntityLinkKibanaConnection[]
    Kibana connection configuration block.
    spaceId string
    An identifier for the space. If not provided, the default space is used.
    timeouts KibanaSecurityEntityStoreEntityLinkTimeouts
    entity_ids Sequence[str]
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    target_id str
    The entity identifier that linked entities resolve to.
    kibana_connections Sequence[KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs]
    Kibana connection configuration block.
    space_id str
    An identifier for the space. If not provided, the default space is used.
    timeouts KibanaSecurityEntityStoreEntityLinkTimeoutsArgs
    entityIds List<String>
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    targetId String
    The entity identifier that linked entities resolve to.
    kibanaConnections List<Property Map>
    Kibana connection configuration block.
    spaceId String
    An identifier for the space. If not provided, the default space is used.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ResolutionGroupJson string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResolutionGroupJson string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    id string
    The provider-assigned unique ID for this managed resource.
    resolution_group_json string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    id String
    The provider-assigned unique ID for this managed resource.
    resolutionGroupJson String
    The normalized JSON representation of the resolution group returned by the Kibana API.
    id string
    The provider-assigned unique ID for this managed resource.
    resolutionGroupJson string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    id str
    The provider-assigned unique ID for this managed resource.
    resolution_group_json str
    The normalized JSON representation of the resolution group returned by the Kibana API.
    id String
    The provider-assigned unique ID for this managed resource.
    resolutionGroupJson String
    The normalized JSON representation of the resolution group returned by the Kibana API.

    Look up Existing KibanaSecurityEntityStoreEntityLink Resource

    Get an existing KibanaSecurityEntityStoreEntityLink 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?: KibanaSecurityEntityStoreEntityLinkState, opts?: CustomResourceOptions): KibanaSecurityEntityStoreEntityLink
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            entity_ids: Optional[Sequence[str]] = None,
            kibana_connections: Optional[Sequence[KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs]] = None,
            resolution_group_json: Optional[str] = None,
            space_id: Optional[str] = None,
            target_id: Optional[str] = None,
            timeouts: Optional[KibanaSecurityEntityStoreEntityLinkTimeoutsArgs] = None) -> KibanaSecurityEntityStoreEntityLink
    func GetKibanaSecurityEntityStoreEntityLink(ctx *Context, name string, id IDInput, state *KibanaSecurityEntityStoreEntityLinkState, opts ...ResourceOption) (*KibanaSecurityEntityStoreEntityLink, error)
    public static KibanaSecurityEntityStoreEntityLink Get(string name, Input<string> id, KibanaSecurityEntityStoreEntityLinkState? state, CustomResourceOptions? opts = null)
    public static KibanaSecurityEntityStoreEntityLink get(String name, Output<String> id, KibanaSecurityEntityStoreEntityLinkState state, CustomResourceOptions options)
    resources:  _:    type: elasticstack:KibanaSecurityEntityStoreEntityLink    get:      id: ${id}
    import {
      to = elasticstack_kibanasecurityentitystoreentitylink.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:
    EntityIds List<string>
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    KibanaConnections List<KibanaSecurityEntityStoreEntityLinkKibanaConnection>
    Kibana connection configuration block.
    ResolutionGroupJson string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    SpaceId string
    An identifier for the space. If not provided, the default space is used.
    TargetId string
    The entity identifier that linked entities resolve to.
    Timeouts KibanaSecurityEntityStoreEntityLinkTimeouts
    EntityIds []string
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    KibanaConnections []KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs
    Kibana connection configuration block.
    ResolutionGroupJson string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    SpaceId string
    An identifier for the space. If not provided, the default space is used.
    TargetId string
    The entity identifier that linked entities resolve to.
    Timeouts KibanaSecurityEntityStoreEntityLinkTimeoutsArgs
    entity_ids list(string)
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    kibana_connections list(object)
    Kibana connection configuration block.
    resolution_group_json string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    space_id string
    An identifier for the space. If not provided, the default space is used.
    target_id string
    The entity identifier that linked entities resolve to.
    timeouts object
    entityIds List<String>
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    kibanaConnections List<KibanaSecurityEntityStoreEntityLinkKibanaConnection>
    Kibana connection configuration block.
    resolutionGroupJson String
    The normalized JSON representation of the resolution group returned by the Kibana API.
    spaceId String
    An identifier for the space. If not provided, the default space is used.
    targetId String
    The entity identifier that linked entities resolve to.
    timeouts KibanaSecurityEntityStoreEntityLinkTimeouts
    entityIds string[]
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    kibanaConnections KibanaSecurityEntityStoreEntityLinkKibanaConnection[]
    Kibana connection configuration block.
    resolutionGroupJson string
    The normalized JSON representation of the resolution group returned by the Kibana API.
    spaceId string
    An identifier for the space. If not provided, the default space is used.
    targetId string
    The entity identifier that linked entities resolve to.
    timeouts KibanaSecurityEntityStoreEntityLinkTimeouts
    entity_ids Sequence[str]
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    kibana_connections Sequence[KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs]
    Kibana connection configuration block.
    resolution_group_json str
    The normalized JSON representation of the resolution group returned by the Kibana API.
    space_id str
    An identifier for the space. If not provided, the default space is used.
    target_id str
    The entity identifier that linked entities resolve to.
    timeouts KibanaSecurityEntityStoreEntityLinkTimeoutsArgs
    entityIds List<String>
    The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
    kibanaConnections List<Property Map>
    Kibana connection configuration block.
    resolutionGroupJson String
    The normalized JSON representation of the resolution group returned by the Kibana API.
    spaceId String
    An identifier for the space. If not provided, the default space is used.
    targetId String
    The entity identifier that linked entities resolve to.
    timeouts Property Map

    Supporting Types

    KibanaSecurityEntityStoreEntityLinkKibanaConnection, KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs

    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.

    KibanaSecurityEntityStoreEntityLinkTimeouts, KibanaSecurityEntityStoreEntityLinkTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    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.16.2
    published on Saturday, Jul 4, 2026 by elastic

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial