published on Thursday, May 14, 2026 by elastic
published on Thursday, May 14, 2026 by elastic
Uploads and installs a custom (locally packaged) Fleet integration. The package must be a zip or tar.gz archive conforming to the Elastic package specification.
To prevent the package from being uninstalled when the resource is destroyed, set skip_destroy to true.
Create FleetCustomIntegration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FleetCustomIntegration(name: string, args: FleetCustomIntegrationArgs, opts?: CustomResourceOptions);@overload
def FleetCustomIntegration(resource_name: str,
args: FleetCustomIntegrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FleetCustomIntegration(resource_name: str,
opts: Optional[ResourceOptions] = None,
package_path: Optional[str] = None,
ignore_mapping_update_errors: Optional[bool] = None,
kibana_connections: Optional[Sequence[FleetCustomIntegrationKibanaConnectionArgs]] = None,
skip_data_stream_rollover: Optional[bool] = None,
skip_destroy: Optional[bool] = None,
space_id: Optional[str] = None,
timeouts: Optional[FleetCustomIntegrationTimeoutsArgs] = None)func NewFleetCustomIntegration(ctx *Context, name string, args FleetCustomIntegrationArgs, opts ...ResourceOption) (*FleetCustomIntegration, error)public FleetCustomIntegration(string name, FleetCustomIntegrationArgs args, CustomResourceOptions? opts = null)
public FleetCustomIntegration(String name, FleetCustomIntegrationArgs args)
public FleetCustomIntegration(String name, FleetCustomIntegrationArgs args, CustomResourceOptions options)
type: elasticstack:FleetCustomIntegration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "elasticstack_fleetcustomintegration" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args FleetCustomIntegrationArgs
- 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 FleetCustomIntegrationArgs
- 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 FleetCustomIntegrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FleetCustomIntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FleetCustomIntegrationArgs
- 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 fleetCustomIntegrationResource = new Elasticstack.FleetCustomIntegration("fleetCustomIntegrationResource", new()
{
PackagePath = "string",
IgnoreMappingUpdateErrors = false,
KibanaConnections = new[]
{
new Elasticstack.Inputs.FleetCustomIntegrationKibanaConnectionArgs
{
ApiKey = "string",
BearerToken = "string",
CaCerts = new[]
{
"string",
},
Endpoints = new[]
{
"string",
},
Insecure = false,
Password = "string",
Username = "string",
},
},
SkipDataStreamRollover = false,
SkipDestroy = false,
SpaceId = "string",
Timeouts = new Elasticstack.Inputs.FleetCustomIntegrationTimeoutsArgs
{
Create = "string",
Update = "string",
},
});
example, err := elasticstack.NewFleetCustomIntegration(ctx, "fleetCustomIntegrationResource", &elasticstack.FleetCustomIntegrationArgs{
PackagePath: pulumi.String("string"),
IgnoreMappingUpdateErrors: pulumi.Bool(false),
KibanaConnections: elasticstack.FleetCustomIntegrationKibanaConnectionArray{
&elasticstack.FleetCustomIntegrationKibanaConnectionArgs{
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"),
},
},
SkipDataStreamRollover: pulumi.Bool(false),
SkipDestroy: pulumi.Bool(false),
SpaceId: pulumi.String("string"),
Timeouts: &elasticstack.FleetCustomIntegrationTimeoutsArgs{
Create: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "elasticstack_fleetcustomintegration" "fleetCustomIntegrationResource" {
package_path = "string"
ignore_mapping_update_errors = false
kibana_connections {
api_key = "string"
bearer_token = "string"
ca_certs = ["string"]
endpoints = ["string"]
insecure = false
password = "string"
username = "string"
}
skip_data_stream_rollover = false
skip_destroy = false
space_id = "string"
timeouts = {
create = "string"
update = "string"
}
}
var fleetCustomIntegrationResource = new FleetCustomIntegration("fleetCustomIntegrationResource", FleetCustomIntegrationArgs.builder()
.packagePath("string")
.ignoreMappingUpdateErrors(false)
.kibanaConnections(FleetCustomIntegrationKibanaConnectionArgs.builder()
.apiKey("string")
.bearerToken("string")
.caCerts("string")
.endpoints("string")
.insecure(false)
.password("string")
.username("string")
.build())
.skipDataStreamRollover(false)
.skipDestroy(false)
.spaceId("string")
.timeouts(FleetCustomIntegrationTimeoutsArgs.builder()
.create("string")
.update("string")
.build())
.build());
fleet_custom_integration_resource = elasticstack.FleetCustomIntegration("fleetCustomIntegrationResource",
package_path="string",
ignore_mapping_update_errors=False,
kibana_connections=[{
"api_key": "string",
"bearer_token": "string",
"ca_certs": ["string"],
"endpoints": ["string"],
"insecure": False,
"password": "string",
"username": "string",
}],
skip_data_stream_rollover=False,
skip_destroy=False,
space_id="string",
timeouts={
"create": "string",
"update": "string",
})
const fleetCustomIntegrationResource = new elasticstack.FleetCustomIntegration("fleetCustomIntegrationResource", {
packagePath: "string",
ignoreMappingUpdateErrors: false,
kibanaConnections: [{
apiKey: "string",
bearerToken: "string",
caCerts: ["string"],
endpoints: ["string"],
insecure: false,
password: "string",
username: "string",
}],
skipDataStreamRollover: false,
skipDestroy: false,
spaceId: "string",
timeouts: {
create: "string",
update: "string",
},
});
type: elasticstack:FleetCustomIntegration
properties:
ignoreMappingUpdateErrors: false
kibanaConnections:
- apiKey: string
bearerToken: string
caCerts:
- string
endpoints:
- string
insecure: false
password: string
username: string
packagePath: string
skipDataStreamRollover: false
skipDestroy: false
spaceId: string
timeouts:
create: string
update: string
FleetCustomIntegration 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 FleetCustomIntegration resource accepts the following input properties:
- Package
Path string - Path to the local zip or tar.gz file containing the integration package.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections List<FleetCustom Integration Kibana Connection> - Kibana connection configuration block.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- Timeouts
Fleet
Custom Integration Timeouts
- Package
Path string - Path to the local zip or tar.gz file containing the integration package.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections []FleetCustom Integration Kibana Connection Args - Kibana connection configuration block.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- Timeouts
Fleet
Custom Integration Timeouts Args
- package_
path string - Path to the local zip or tar.gz file containing the integration package.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections list(object) - Kibana connection configuration block.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts object
- package
Path String - Path to the local zip or tar.gz file containing the integration package.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<FleetCustom Integration Kibana Connection> - Kibana connection configuration block.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts
Fleet
Custom Integration Timeouts
- package
Path string - Path to the local zip or tar.gz file containing the integration package.
- ignore
Mapping booleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections FleetCustom Integration Kibana Connection[] - Kibana connection configuration block.
- skip
Data booleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy boolean - space
Id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts
Fleet
Custom Integration Timeouts
- package_
path str - Path to the local zip or tar.gz file containing the integration package.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections Sequence[FleetCustom Integration Kibana Connection Args] - Kibana connection configuration block.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id str - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts
Fleet
Custom Integration Timeouts Args
- package
Path String - Path to the local zip or tar.gz file containing the integration package.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the FleetCustomIntegration resource produces the following output properties:
- Checksum string
- SHA256 hex digest of the uploaded package file.
- Id string
- The provider-assigned unique ID for this managed resource.
- Package
Name string - The integration package name, populated from the upload response.
- Package
Version string - The integration package version, populated after upload.
- Checksum string
- SHA256 hex digest of the uploaded package file.
- Id string
- The provider-assigned unique ID for this managed resource.
- Package
Name string - The integration package name, populated from the upload response.
- Package
Version string - The integration package version, populated after upload.
- checksum string
- SHA256 hex digest of the uploaded package file.
- id string
- The provider-assigned unique ID for this managed resource.
- package_
name string - The integration package name, populated from the upload response.
- package_
version string - The integration package version, populated after upload.
- checksum String
- SHA256 hex digest of the uploaded package file.
- id String
- The provider-assigned unique ID for this managed resource.
- package
Name String - The integration package name, populated from the upload response.
- package
Version String - The integration package version, populated after upload.
- checksum string
- SHA256 hex digest of the uploaded package file.
- id string
- The provider-assigned unique ID for this managed resource.
- package
Name string - The integration package name, populated from the upload response.
- package
Version string - The integration package version, populated after upload.
- checksum str
- SHA256 hex digest of the uploaded package file.
- id str
- The provider-assigned unique ID for this managed resource.
- package_
name str - The integration package name, populated from the upload response.
- package_
version str - The integration package version, populated after upload.
- checksum String
- SHA256 hex digest of the uploaded package file.
- id String
- The provider-assigned unique ID for this managed resource.
- package
Name String - The integration package name, populated from the upload response.
- package
Version String - The integration package version, populated after upload.
Look up Existing FleetCustomIntegration Resource
Get an existing FleetCustomIntegration 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?: FleetCustomIntegrationState, opts?: CustomResourceOptions): FleetCustomIntegration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
checksum: Optional[str] = None,
ignore_mapping_update_errors: Optional[bool] = None,
kibana_connections: Optional[Sequence[FleetCustomIntegrationKibanaConnectionArgs]] = None,
package_name: Optional[str] = None,
package_path: Optional[str] = None,
package_version: Optional[str] = None,
skip_data_stream_rollover: Optional[bool] = None,
skip_destroy: Optional[bool] = None,
space_id: Optional[str] = None,
timeouts: Optional[FleetCustomIntegrationTimeoutsArgs] = None) -> FleetCustomIntegrationfunc GetFleetCustomIntegration(ctx *Context, name string, id IDInput, state *FleetCustomIntegrationState, opts ...ResourceOption) (*FleetCustomIntegration, error)public static FleetCustomIntegration Get(string name, Input<string> id, FleetCustomIntegrationState? state, CustomResourceOptions? opts = null)public static FleetCustomIntegration get(String name, Output<String> id, FleetCustomIntegrationState state, CustomResourceOptions options)resources: _: type: elasticstack:FleetCustomIntegration get: id: ${id}import {
to = elasticstack_fleetcustomintegration.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.
- Checksum string
- SHA256 hex digest of the uploaded package file.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections List<FleetCustom Integration Kibana Connection> - Kibana connection configuration block.
- Package
Name string - The integration package name, populated from the upload response.
- Package
Path string - Path to the local zip or tar.gz file containing the integration package.
- Package
Version string - The integration package version, populated after upload.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- Timeouts
Fleet
Custom Integration Timeouts
- Checksum string
- SHA256 hex digest of the uploaded package file.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections []FleetCustom Integration Kibana Connection Args - Kibana connection configuration block.
- Package
Name string - The integration package name, populated from the upload response.
- Package
Path string - Path to the local zip or tar.gz file containing the integration package.
- Package
Version string - The integration package version, populated after upload.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- Timeouts
Fleet
Custom Integration Timeouts Args
- checksum string
- SHA256 hex digest of the uploaded package file.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections list(object) - Kibana connection configuration block.
- package_
name string - The integration package name, populated from the upload response.
- package_
path string - Path to the local zip or tar.gz file containing the integration package.
- package_
version string - The integration package version, populated after upload.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts object
- checksum String
- SHA256 hex digest of the uploaded package file.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<FleetCustom Integration Kibana Connection> - Kibana connection configuration block.
- package
Name String - The integration package name, populated from the upload response.
- package
Path String - Path to the local zip or tar.gz file containing the integration package.
- package
Version String - The integration package version, populated after upload.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts
Fleet
Custom Integration Timeouts
- checksum string
- SHA256 hex digest of the uploaded package file.
- ignore
Mapping booleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections FleetCustom Integration Kibana Connection[] - Kibana connection configuration block.
- package
Name string - The integration package name, populated from the upload response.
- package
Path string - Path to the local zip or tar.gz file containing the integration package.
- package
Version string - The integration package version, populated after upload.
- skip
Data booleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy boolean - space
Id string - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts
Fleet
Custom Integration Timeouts
- checksum str
- SHA256 hex digest of the uploaded package file.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections Sequence[FleetCustom Integration Kibana Connection Args] - Kibana connection configuration block.
- package_
name str - The integration package name, populated from the upload response.
- package_
path str - Path to the local zip or tar.gz file containing the integration package.
- package_
version str - The integration package version, populated after upload.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id str - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts
Fleet
Custom Integration Timeouts Args
- checksum String
- SHA256 hex digest of the uploaded package file.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- package
Name String - The integration package name, populated from the upload response.
- package
Path String - Path to the local zip or tar.gz file containing the integration package.
- package
Version String - The integration package version, populated after upload.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
- timeouts Property Map
Supporting Types
FleetCustomIntegrationKibanaConnection, FleetCustomIntegrationKibanaConnectionArgs
- 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.
FleetCustomIntegrationTimeouts, FleetCustomIntegrationTimeoutsArgs
- 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).
- 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).
- 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).
- 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).
- 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).
- 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).
- 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).
- 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, May 14, 2026 by elastic
