published on Saturday, Jul 4, 2026 by elastic
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:
- 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<KibanaSecurity Entity Store Entity Link Kibana Connection> - Kibana connection configuration block.
- Space
Id string - An identifier for the space. If not provided, the default space is used.
- Timeouts
Kibana
Security Entity Store Entity Link Timeouts
- Entity
Ids []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 []KibanaSecurity Entity Store Entity Link Kibana Connection Args - Kibana connection configuration block.
- Space
Id string - An identifier for the space. If not provided, the default space is used.
- Timeouts
Kibana
Security Entity Store Entity Link Timeouts Args
- 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
- 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<KibanaSecurity Entity Store Entity Link Kibana Connection> - Kibana connection configuration block.
- space
Id String - An identifier for the space. If not provided, the default space is used.
- timeouts
Kibana
Security Entity Store Entity Link Timeouts
- entity
Ids 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 KibanaSecurity Entity Store Entity Link Kibana Connection[] - Kibana connection configuration block.
- space
Id string - An identifier for the space. If not provided, the default space is used.
- timeouts
Kibana
Security Entity Store Entity Link Timeouts
- 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[KibanaSecurity Entity Store Entity Link Kibana Connection Args] - Kibana connection configuration block.
- space_
id str - An identifier for the space. If not provided, the default space is used.
- timeouts
Kibana
Security Entity Store Entity Link Timeouts Args
- 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<Property Map> - Kibana connection configuration block.
- space
Id 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.
- Resolution
Group stringJson - 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 stringJson - 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_ stringjson - 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 StringJson - 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 stringJson - 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_ strjson - 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 StringJson - 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) -> KibanaSecurityEntityStoreEntityLinkfunc 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.
- 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<KibanaSecurity Entity Store Entity Link Kibana Connection> - Kibana connection configuration block.
- Resolution
Group stringJson - 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
Kibana
Security Entity Store Entity Link Timeouts
- Entity
Ids []string - The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
- Kibana
Connections []KibanaSecurity Entity Store Entity Link Kibana Connection Args - Kibana connection configuration block.
- Resolution
Group stringJson - 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
Kibana
Security Entity Store Entity Link Timeouts Args
- 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_ stringjson - 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
- 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<KibanaSecurity Entity Store Entity Link Kibana Connection> - Kibana connection configuration block.
- resolution
Group StringJson - 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
Kibana
Security Entity Store Entity Link Timeouts
- entity
Ids string[] - The set of alias entity identifiers to link to the target entity. Must contain between 1 and 1000 items.
- kibana
Connections KibanaSecurity Entity Store Entity Link Kibana Connection[] - Kibana connection configuration block.
- resolution
Group stringJson - 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
Kibana
Security Entity Store Entity Link Timeouts
- 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[KibanaSecurity Entity Store Entity Link Kibana Connection Args] - Kibana connection configuration block.
- resolution_
group_ strjson - 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
Kibana
Security Entity Store Entity Link Timeouts Args
- 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<Property Map> - Kibana connection configuration block.
- resolution
Group StringJson - 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 Property Map
Supporting Types
KibanaSecurityEntityStoreEntityLinkKibanaConnection, KibanaSecurityEntityStoreEntityLinkKibanaConnectionArgs
- 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.
- Api
Key string - API Key to use for authentication to Kibana
- Bearer
Token string - Bearer Token to use for authentication to Kibana
- Ca
Certs []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.
- 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 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 string - API Key to use for authentication to Kibana
- bearer
Token string - Bearer Token to use for authentication to Kibana
- ca
Certs 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.
- 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 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
elasticstackTerraform Provider.
published on Saturday, Jul 4, 2026 by elastic