published on Thursday, Jul 23, 2026 by elastic
published on Thursday, Jul 23, 2026 by elastic
Manages the Elastic Security Entity Store lifecycle within a Kibana space.
Create KibanaSecurityEntityStore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KibanaSecurityEntityStore(name: string, args?: KibanaSecurityEntityStoreArgs, opts?: CustomResourceOptions);@overload
def KibanaSecurityEntityStore(resource_name: str,
args: Optional[KibanaSecurityEntityStoreArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def KibanaSecurityEntityStore(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_entity_type_shrink: Optional[bool] = None,
entity_types: Optional[Sequence[str]] = None,
history_snapshot: Optional[KibanaSecurityEntityStoreHistorySnapshotArgs] = None,
kibana_connections: Optional[Sequence[KibanaSecurityEntityStoreKibanaConnectionArgs]] = None,
log_extraction: Optional[KibanaSecurityEntityStoreLogExtractionArgs] = None,
space_id: Optional[str] = None,
started: Optional[bool] = None,
timeouts: Optional[KibanaSecurityEntityStoreTimeoutsArgs] = None)func NewKibanaSecurityEntityStore(ctx *Context, name string, args *KibanaSecurityEntityStoreArgs, opts ...ResourceOption) (*KibanaSecurityEntityStore, error)public KibanaSecurityEntityStore(string name, KibanaSecurityEntityStoreArgs? args = null, CustomResourceOptions? opts = null)
public KibanaSecurityEntityStore(String name, KibanaSecurityEntityStoreArgs args)
public KibanaSecurityEntityStore(String name, KibanaSecurityEntityStoreArgs args, CustomResourceOptions options)
type: elasticstack:KibanaSecurityEntityStore
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "elasticstack_kibana_security_entity_store" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args KibanaSecurityEntityStoreArgs
- 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 KibanaSecurityEntityStoreArgs
- 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 KibanaSecurityEntityStoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KibanaSecurityEntityStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KibanaSecurityEntityStoreArgs
- 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 kibanaSecurityEntityStoreResource = new Elasticstack.KibanaSecurityEntityStore("kibanaSecurityEntityStoreResource", new()
{
AllowEntityTypeShrink = false,
EntityTypes = new[]
{
"string",
},
HistorySnapshot = new Elasticstack.Inputs.KibanaSecurityEntityStoreHistorySnapshotArgs
{
Frequency = "string",
},
KibanaConnections = new[]
{
new Elasticstack.Inputs.KibanaSecurityEntityStoreKibanaConnectionArgs
{
ApiKey = "string",
BearerToken = "string",
CaCerts = new[]
{
"string",
},
Endpoints = new[]
{
"string",
},
Insecure = false,
Password = "string",
Username = "string",
},
},
LogExtraction = new Elasticstack.Inputs.KibanaSecurityEntityStoreLogExtractionArgs
{
AdditionalIndexPatterns = new[]
{
"string",
},
Delay = "string",
DocsLimit = 0,
ExcludedIndexPatterns = new[]
{
"string",
},
FieldHistoryLength = 0,
Frequency = "string",
LookbackPeriod = "string",
MaxLogsPerPage = 0,
MaxLogsPerWindow = 0,
MaxLogsPerWindowCapBehavior = "string",
MaxTimeWindowSize = "string",
},
SpaceId = "string",
Started = false,
Timeouts = new Elasticstack.Inputs.KibanaSecurityEntityStoreTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := elasticstack.NewKibanaSecurityEntityStore(ctx, "kibanaSecurityEntityStoreResource", &elasticstack.KibanaSecurityEntityStoreArgs{
AllowEntityTypeShrink: pulumi.Bool(false),
EntityTypes: pulumi.StringArray{
pulumi.String("string"),
},
HistorySnapshot: &elasticstack.KibanaSecurityEntityStoreHistorySnapshotArgs{
Frequency: pulumi.String("string"),
},
KibanaConnections: elasticstack.KibanaSecurityEntityStoreKibanaConnectionArray{
&elasticstack.KibanaSecurityEntityStoreKibanaConnectionArgs{
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"),
},
},
LogExtraction: &elasticstack.KibanaSecurityEntityStoreLogExtractionArgs{
AdditionalIndexPatterns: pulumi.StringArray{
pulumi.String("string"),
},
Delay: pulumi.String("string"),
DocsLimit: pulumi.Float64(0),
ExcludedIndexPatterns: pulumi.StringArray{
pulumi.String("string"),
},
FieldHistoryLength: pulumi.Float64(0),
Frequency: pulumi.String("string"),
LookbackPeriod: pulumi.String("string"),
MaxLogsPerPage: pulumi.Float64(0),
MaxLogsPerWindow: pulumi.Float64(0),
MaxLogsPerWindowCapBehavior: pulumi.String("string"),
MaxTimeWindowSize: pulumi.String("string"),
},
SpaceId: pulumi.String("string"),
Started: pulumi.Bool(false),
Timeouts: &elasticstack.KibanaSecurityEntityStoreTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "elasticstack_kibana_security_entity_store" "kibanaSecurityEntityStoreResource" {
lifecycle {
create_before_destroy = true
}
allow_entity_type_shrink = false
entity_types = ["string"]
history_snapshot = {
frequency = "string"
}
kibana_connections {
api_key = "string"
bearer_token = "string"
ca_certs = ["string"]
endpoints = ["string"]
insecure = false
password = "string"
username = "string"
}
log_extraction = {
additional_index_patterns = ["string"]
delay = "string"
docs_limit = 0
excluded_index_patterns = ["string"]
field_history_length = 0
frequency = "string"
lookback_period = "string"
max_logs_per_page = 0
max_logs_per_window = 0
max_logs_per_window_cap_behavior = "string"
max_time_window_size = "string"
}
space_id = "string"
started = false
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var kibanaSecurityEntityStoreResource = new KibanaSecurityEntityStore("kibanaSecurityEntityStoreResource", KibanaSecurityEntityStoreArgs.builder()
.allowEntityTypeShrink(false)
.entityTypes("string")
.historySnapshot(KibanaSecurityEntityStoreHistorySnapshotArgs.builder()
.frequency("string")
.build())
.kibanaConnections(KibanaSecurityEntityStoreKibanaConnectionArgs.builder()
.apiKey("string")
.bearerToken("string")
.caCerts("string")
.endpoints("string")
.insecure(false)
.password("string")
.username("string")
.build())
.logExtraction(KibanaSecurityEntityStoreLogExtractionArgs.builder()
.additionalIndexPatterns("string")
.delay("string")
.docsLimit(0.0)
.excludedIndexPatterns("string")
.fieldHistoryLength(0.0)
.frequency("string")
.lookbackPeriod("string")
.maxLogsPerPage(0.0)
.maxLogsPerWindow(0.0)
.maxLogsPerWindowCapBehavior("string")
.maxTimeWindowSize("string")
.build())
.spaceId("string")
.started(false)
.timeouts(KibanaSecurityEntityStoreTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
kibana_security_entity_store_resource = elasticstack.KibanaSecurityEntityStore("kibanaSecurityEntityStoreResource",
allow_entity_type_shrink=False,
entity_types=["string"],
history_snapshot={
"frequency": "string",
},
kibana_connections=[{
"api_key": "string",
"bearer_token": "string",
"ca_certs": ["string"],
"endpoints": ["string"],
"insecure": False,
"password": "string",
"username": "string",
}],
log_extraction={
"additional_index_patterns": ["string"],
"delay": "string",
"docs_limit": float(0),
"excluded_index_patterns": ["string"],
"field_history_length": float(0),
"frequency": "string",
"lookback_period": "string",
"max_logs_per_page": float(0),
"max_logs_per_window": float(0),
"max_logs_per_window_cap_behavior": "string",
"max_time_window_size": "string",
},
space_id="string",
started=False,
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const kibanaSecurityEntityStoreResource = new elasticstack.KibanaSecurityEntityStore("kibanaSecurityEntityStoreResource", {
allowEntityTypeShrink: false,
entityTypes: ["string"],
historySnapshot: {
frequency: "string",
},
kibanaConnections: [{
apiKey: "string",
bearerToken: "string",
caCerts: ["string"],
endpoints: ["string"],
insecure: false,
password: "string",
username: "string",
}],
logExtraction: {
additionalIndexPatterns: ["string"],
delay: "string",
docsLimit: 0,
excludedIndexPatterns: ["string"],
fieldHistoryLength: 0,
frequency: "string",
lookbackPeriod: "string",
maxLogsPerPage: 0,
maxLogsPerWindow: 0,
maxLogsPerWindowCapBehavior: "string",
maxTimeWindowSize: "string",
},
spaceId: "string",
started: false,
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: elasticstack:KibanaSecurityEntityStore
properties:
allowEntityTypeShrink: false
entityTypes:
- string
historySnapshot:
frequency: string
kibanaConnections:
- apiKey: string
bearerToken: string
caCerts:
- string
endpoints:
- string
insecure: false
password: string
username: string
logExtraction:
additionalIndexPatterns:
- string
delay: string
docsLimit: 0
excludedIndexPatterns:
- string
fieldHistoryLength: 0
frequency: string
lookbackPeriod: string
maxLogsPerPage: 0
maxLogsPerWindow: 0
maxLogsPerWindowCapBehavior: string
maxTimeWindowSize: string
spaceId: string
started: false
timeouts:
create: string
delete: string
read: string
update: string
KibanaSecurityEntityStore 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 KibanaSecurityEntityStore resource accepts the following input properties:
- Allow
Entity boolType Shrink - Entity
Types List<string> - Entity types to install and manage. Valid values are user, host, service, and generic.
- History
Snapshot KibanaSecurity Entity Store History Snapshot - Install-only history snapshot settings.
- Kibana
Connections List<KibanaSecurity Entity Store Kibana Connection> - Kibana connection configuration block.
- Log
Extraction KibanaSecurity Entity Store Log Extraction - Optional log extraction settings for the entity store.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- Started bool
- Whether any managed entity engine should be running after reconciliation.
- Timeouts
Kibana
Security Entity Store Timeouts
- Allow
Entity boolType Shrink - Entity
Types []string - Entity types to install and manage. Valid values are user, host, service, and generic.
- History
Snapshot KibanaSecurity Entity Store History Snapshot Args - Install-only history snapshot settings.
- Kibana
Connections []KibanaSecurity Entity Store Kibana Connection Args - Kibana connection configuration block.
- Log
Extraction KibanaSecurity Entity Store Log Extraction Args - Optional log extraction settings for the entity store.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- Started bool
- Whether any managed entity engine should be running after reconciliation.
- Timeouts
Kibana
Security Entity Store Timeouts Args
- allow_
entity_ booltype_ shrink - entity_
types list(string) - Entity types to install and manage. Valid values are user, host, service, and generic.
- history_
snapshot object - Install-only history snapshot settings.
- kibana_
connections list(object) - Kibana connection configuration block.
- log_
extraction object - Optional log extraction settings for the entity store.
- space_
id string - An identifier for the space. If space_id is not provided, the default space is used.
- started bool
- Whether any managed entity engine should be running after reconciliation.
- timeouts object
- allow
Entity BooleanType Shrink - entity
Types List<String> - Entity types to install and manage. Valid values are user, host, service, and generic.
- history
Snapshot KibanaSecurity Entity Store History Snapshot - Install-only history snapshot settings.
- kibana
Connections List<KibanaSecurity Entity Store Kibana Connection> - Kibana connection configuration block.
- log
Extraction KibanaSecurity Entity Store Log Extraction - Optional log extraction settings for the entity store.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- started Boolean
- Whether any managed entity engine should be running after reconciliation.
- timeouts
Kibana
Security Entity Store Timeouts
- allow
Entity booleanType Shrink - entity
Types string[] - Entity types to install and manage. Valid values are user, host, service, and generic.
- history
Snapshot KibanaSecurity Entity Store History Snapshot - Install-only history snapshot settings.
- kibana
Connections KibanaSecurity Entity Store Kibana Connection[] - Kibana connection configuration block.
- log
Extraction KibanaSecurity Entity Store Log Extraction - Optional log extraction settings for the entity store.
- space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- started boolean
- Whether any managed entity engine should be running after reconciliation.
- timeouts
Kibana
Security Entity Store Timeouts
- allow_
entity_ booltype_ shrink - entity_
types Sequence[str] - Entity types to install and manage. Valid values are user, host, service, and generic.
- history_
snapshot KibanaSecurity Entity Store History Snapshot Args - Install-only history snapshot settings.
- kibana_
connections Sequence[KibanaSecurity Entity Store Kibana Connection Args] - Kibana connection configuration block.
- log_
extraction KibanaSecurity Entity Store Log Extraction Args - Optional log extraction settings for the entity store.
- space_
id str - An identifier for the space. If space_id is not provided, the default space is used.
- started bool
- Whether any managed entity engine should be running after reconciliation.
- timeouts
Kibana
Security Entity Store Timeouts Args
- allow
Entity BooleanType Shrink - entity
Types List<String> - Entity types to install and manage. Valid values are user, host, service, and generic.
- history
Snapshot Property Map - Install-only history snapshot settings.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- log
Extraction Property Map - Optional log extraction settings for the entity store.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- started Boolean
- Whether any managed entity engine should be running after reconciliation.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the KibanaSecurityEntityStore resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Status
Json string - Normalized JSON representation of the most recent entity store status response.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status
Json string - Normalized JSON representation of the most recent entity store status response.
- id string
- The provider-assigned unique ID for this managed resource.
- status_
json string - Normalized JSON representation of the most recent entity store status response.
- id String
- The provider-assigned unique ID for this managed resource.
- status
Json String - Normalized JSON representation of the most recent entity store status response.
- id string
- The provider-assigned unique ID for this managed resource.
- status
Json string - Normalized JSON representation of the most recent entity store status response.
- id str
- The provider-assigned unique ID for this managed resource.
- status_
json str - Normalized JSON representation of the most recent entity store status response.
- id String
- The provider-assigned unique ID for this managed resource.
- status
Json String - Normalized JSON representation of the most recent entity store status response.
Look up Existing KibanaSecurityEntityStore Resource
Get an existing KibanaSecurityEntityStore 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?: KibanaSecurityEntityStoreState, opts?: CustomResourceOptions): KibanaSecurityEntityStore@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_entity_type_shrink: Optional[bool] = None,
entity_types: Optional[Sequence[str]] = None,
history_snapshot: Optional[KibanaSecurityEntityStoreHistorySnapshotArgs] = None,
kibana_connections: Optional[Sequence[KibanaSecurityEntityStoreKibanaConnectionArgs]] = None,
log_extraction: Optional[KibanaSecurityEntityStoreLogExtractionArgs] = None,
space_id: Optional[str] = None,
started: Optional[bool] = None,
status_json: Optional[str] = None,
timeouts: Optional[KibanaSecurityEntityStoreTimeoutsArgs] = None) -> KibanaSecurityEntityStorefunc GetKibanaSecurityEntityStore(ctx *Context, name string, id IDInput, state *KibanaSecurityEntityStoreState, opts ...ResourceOption) (*KibanaSecurityEntityStore, error)public static KibanaSecurityEntityStore Get(string name, Input<string> id, KibanaSecurityEntityStoreState? state, CustomResourceOptions? opts = null)public static KibanaSecurityEntityStore get(String name, Output<String> id, KibanaSecurityEntityStoreState state, CustomResourceOptions options)resources: _: type: elasticstack:KibanaSecurityEntityStore get: id: ${id}import {
to = elasticstack_kibana_security_entity_store.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.
- Allow
Entity boolType Shrink - Entity
Types List<string> - Entity types to install and manage. Valid values are user, host, service, and generic.
- History
Snapshot KibanaSecurity Entity Store History Snapshot - Install-only history snapshot settings.
- Kibana
Connections List<KibanaSecurity Entity Store Kibana Connection> - Kibana connection configuration block.
- Log
Extraction KibanaSecurity Entity Store Log Extraction - Optional log extraction settings for the entity store.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- Started bool
- Whether any managed entity engine should be running after reconciliation.
- Status
Json string - Normalized JSON representation of the most recent entity store status response.
- Timeouts
Kibana
Security Entity Store Timeouts
- Allow
Entity boolType Shrink - Entity
Types []string - Entity types to install and manage. Valid values are user, host, service, and generic.
- History
Snapshot KibanaSecurity Entity Store History Snapshot Args - Install-only history snapshot settings.
- Kibana
Connections []KibanaSecurity Entity Store Kibana Connection Args - Kibana connection configuration block.
- Log
Extraction KibanaSecurity Entity Store Log Extraction Args - Optional log extraction settings for the entity store.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- Started bool
- Whether any managed entity engine should be running after reconciliation.
- Status
Json string - Normalized JSON representation of the most recent entity store status response.
- Timeouts
Kibana
Security Entity Store Timeouts Args
- allow_
entity_ booltype_ shrink - entity_
types list(string) - Entity types to install and manage. Valid values are user, host, service, and generic.
- history_
snapshot object - Install-only history snapshot settings.
- kibana_
connections list(object) - Kibana connection configuration block.
- log_
extraction object - Optional log extraction settings for the entity store.
- space_
id string - An identifier for the space. If space_id is not provided, the default space is used.
- started bool
- Whether any managed entity engine should be running after reconciliation.
- status_
json string - Normalized JSON representation of the most recent entity store status response.
- timeouts object
- allow
Entity BooleanType Shrink - entity
Types List<String> - Entity types to install and manage. Valid values are user, host, service, and generic.
- history
Snapshot KibanaSecurity Entity Store History Snapshot - Install-only history snapshot settings.
- kibana
Connections List<KibanaSecurity Entity Store Kibana Connection> - Kibana connection configuration block.
- log
Extraction KibanaSecurity Entity Store Log Extraction - Optional log extraction settings for the entity store.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- started Boolean
- Whether any managed entity engine should be running after reconciliation.
- status
Json String - Normalized JSON representation of the most recent entity store status response.
- timeouts
Kibana
Security Entity Store Timeouts
- allow
Entity booleanType Shrink - entity
Types string[] - Entity types to install and manage. Valid values are user, host, service, and generic.
- history
Snapshot KibanaSecurity Entity Store History Snapshot - Install-only history snapshot settings.
- kibana
Connections KibanaSecurity Entity Store Kibana Connection[] - Kibana connection configuration block.
- log
Extraction KibanaSecurity Entity Store Log Extraction - Optional log extraction settings for the entity store.
- space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- started boolean
- Whether any managed entity engine should be running after reconciliation.
- status
Json string - Normalized JSON representation of the most recent entity store status response.
- timeouts
Kibana
Security Entity Store Timeouts
- allow_
entity_ booltype_ shrink - entity_
types Sequence[str] - Entity types to install and manage. Valid values are user, host, service, and generic.
- history_
snapshot KibanaSecurity Entity Store History Snapshot Args - Install-only history snapshot settings.
- kibana_
connections Sequence[KibanaSecurity Entity Store Kibana Connection Args] - Kibana connection configuration block.
- log_
extraction KibanaSecurity Entity Store Log Extraction Args - Optional log extraction settings for the entity store.
- space_
id str - An identifier for the space. If space_id is not provided, the default space is used.
- started bool
- Whether any managed entity engine should be running after reconciliation.
- status_
json str - Normalized JSON representation of the most recent entity store status response.
- timeouts
Kibana
Security Entity Store Timeouts Args
- allow
Entity BooleanType Shrink - entity
Types List<String> - Entity types to install and manage. Valid values are user, host, service, and generic.
- history
Snapshot Property Map - Install-only history snapshot settings.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- log
Extraction Property Map - Optional log extraction settings for the entity store.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- started Boolean
- Whether any managed entity engine should be running after reconciliation.
- status
Json String - Normalized JSON representation of the most recent entity store status response.
- timeouts Property Map
Supporting Types
KibanaSecurityEntityStoreHistorySnapshot, KibanaSecurityEntityStoreHistorySnapshotArgs
- Frequency string
- History snapshot frequency used during installation.
- Frequency string
- History snapshot frequency used during installation.
- frequency string
- History snapshot frequency used during installation.
- frequency String
- History snapshot frequency used during installation.
- frequency string
- History snapshot frequency used during installation.
- frequency str
- History snapshot frequency used during installation.
- frequency String
- History snapshot frequency used during installation.
KibanaSecurityEntityStoreKibanaConnection, KibanaSecurityEntityStoreKibanaConnectionArgs
- 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.
KibanaSecurityEntityStoreLogExtraction, KibanaSecurityEntityStoreLogExtractionArgs
- Additional
Index List<string>Patterns - Delay string
- Docs
Limit double - Excluded
Index List<string>Patterns - Field
History doubleLength - Frequency string
- Lookback
Period string - Max
Logs doublePer Page - Max
Logs doublePer Window - Max
Logs stringPer Window Cap Behavior - Max
Time stringWindow Size
- Additional
Index []stringPatterns - Delay string
- Docs
Limit float64 - Excluded
Index []stringPatterns - Field
History float64Length - Frequency string
- Lookback
Period string - Max
Logs float64Per Page - Max
Logs float64Per Window - Max
Logs stringPer Window Cap Behavior - Max
Time stringWindow Size
- additional_
index_ list(string)patterns - delay string
- docs_
limit number - excluded_
index_ list(string)patterns - field_
history_ numberlength - frequency string
- lookback_
period string - max_
logs_ numberper_ page - max_
logs_ numberper_ window - max_
logs_ stringper_ window_ cap_ behavior - max_
time_ stringwindow_ size
- additional
Index List<String>Patterns - delay String
- docs
Limit Double - excluded
Index List<String>Patterns - field
History DoubleLength - frequency String
- lookback
Period String - max
Logs DoublePer Page - max
Logs DoublePer Window - max
Logs StringPer Window Cap Behavior - max
Time StringWindow Size
- additional
Index string[]Patterns - delay string
- docs
Limit number - excluded
Index string[]Patterns - field
History numberLength - frequency string
- lookback
Period string - max
Logs numberPer Page - max
Logs numberPer Window - max
Logs stringPer Window Cap Behavior - max
Time stringWindow Size
- additional_
index_ Sequence[str]patterns - delay str
- docs_
limit float - excluded_
index_ Sequence[str]patterns - field_
history_ floatlength - frequency str
- lookback_
period str - max_
logs_ floatper_ page - max_
logs_ floatper_ window - max_
logs_ strper_ window_ cap_ behavior - max_
time_ strwindow_ size
- additional
Index List<String>Patterns - delay String
- docs
Limit Number - excluded
Index List<String>Patterns - field
History NumberLength - frequency String
- lookback
Period String - max
Logs NumberPer Page - max
Logs NumberPer Window - max
Logs StringPer Window Cap Behavior - max
Time StringWindow Size
KibanaSecurityEntityStoreTimeouts, KibanaSecurityEntityStoreTimeoutsArgs
- 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 Thursday, Jul 23, 2026 by elastic