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

    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:

    PackagePath string
    Path to the local zip or tar.gz file containing the integration package.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections List<FleetCustomIntegrationKibanaConnection>
    Kibana connection configuration block.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId string
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    Timeouts FleetCustomIntegrationTimeouts
    PackagePath string
    Path to the local zip or tar.gz file containing the integration package.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections []FleetCustomIntegrationKibanaConnectionArgs
    Kibana connection configuration block.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId string
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    Timeouts FleetCustomIntegrationTimeoutsArgs
    package_path string
    Path to the local zip or tar.gz file containing the integration package.
    ignore_mapping_update_errors bool
    Set to true to ignore mapping update errors during package installation.
    kibana_connections list(object)
    Kibana connection configuration block.
    skip_data_stream_rollover bool
    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
    packagePath String
    Path to the local zip or tar.gz file containing the integration package.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections List<FleetCustomIntegrationKibanaConnection>
    Kibana connection configuration block.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId String
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    timeouts FleetCustomIntegrationTimeouts
    packagePath string
    Path to the local zip or tar.gz file containing the integration package.
    ignoreMappingUpdateErrors boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections FleetCustomIntegrationKibanaConnection[]
    Kibana connection configuration block.
    skipDataStreamRollover boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy boolean
    spaceId string
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    timeouts FleetCustomIntegrationTimeouts
    package_path str
    Path to the local zip or tar.gz file containing the integration package.
    ignore_mapping_update_errors bool
    Set to true to ignore mapping update errors during package installation.
    kibana_connections Sequence[FleetCustomIntegrationKibanaConnectionArgs]
    Kibana connection configuration block.
    skip_data_stream_rollover bool
    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 FleetCustomIntegrationTimeoutsArgs
    packagePath String
    Path to the local zip or tar.gz file containing the integration package.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections List<Property Map>
    Kibana connection configuration block.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId 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.
    PackageName string
    The integration package name, populated from the upload response.
    PackageVersion 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.
    PackageName string
    The integration package name, populated from the upload response.
    PackageVersion 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.
    packageName String
    The integration package name, populated from the upload response.
    packageVersion 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.
    packageName string
    The integration package name, populated from the upload response.
    packageVersion 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.
    packageName String
    The integration package name, populated from the upload response.
    packageVersion 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) -> FleetCustomIntegration
    func 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.
    The following state arguments are supported:
    Checksum string
    SHA256 hex digest of the uploaded package file.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections List<FleetCustomIntegrationKibanaConnection>
    Kibana connection configuration block.
    PackageName string
    The integration package name, populated from the upload response.
    PackagePath string
    Path to the local zip or tar.gz file containing the integration package.
    PackageVersion string
    The integration package version, populated after upload.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId string
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    Timeouts FleetCustomIntegrationTimeouts
    Checksum string
    SHA256 hex digest of the uploaded package file.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections []FleetCustomIntegrationKibanaConnectionArgs
    Kibana connection configuration block.
    PackageName string
    The integration package name, populated from the upload response.
    PackagePath string
    Path to the local zip or tar.gz file containing the integration package.
    PackageVersion string
    The integration package version, populated after upload.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId string
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    Timeouts FleetCustomIntegrationTimeoutsArgs
    checksum string
    SHA256 hex digest of the uploaded package file.
    ignore_mapping_update_errors bool
    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_stream_rollover bool
    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.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections List<FleetCustomIntegrationKibanaConnection>
    Kibana connection configuration block.
    packageName String
    The integration package name, populated from the upload response.
    packagePath String
    Path to the local zip or tar.gz file containing the integration package.
    packageVersion String
    The integration package version, populated after upload.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId String
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    timeouts FleetCustomIntegrationTimeouts
    checksum string
    SHA256 hex digest of the uploaded package file.
    ignoreMappingUpdateErrors boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections FleetCustomIntegrationKibanaConnection[]
    Kibana connection configuration block.
    packageName string
    The integration package name, populated from the upload response.
    packagePath string
    Path to the local zip or tar.gz file containing the integration package.
    packageVersion string
    The integration package version, populated after upload.
    skipDataStreamRollover boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy boolean
    spaceId string
    The Kibana space ID where this integration package should be installed. Changing this value forces resource replacement.
    timeouts FleetCustomIntegrationTimeouts
    checksum str
    SHA256 hex digest of the uploaded package file.
    ignore_mapping_update_errors bool
    Set to true to ignore mapping update errors during package installation.
    kibana_connections Sequence[FleetCustomIntegrationKibanaConnectionArgs]
    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_stream_rollover bool
    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 FleetCustomIntegrationTimeoutsArgs
    checksum String
    SHA256 hex digest of the uploaded package file.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections List<Property Map>
    Kibana connection configuration block.
    packageName String
    The integration package name, populated from the upload response.
    packagePath String
    Path to the local zip or tar.gz file containing the integration package.
    packageVersion String
    The integration package version, populated after upload.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId 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

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

    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 elasticstack Terraform Provider.
    Viewing docs for elasticstack 0.15.0
    published on Thursday, May 14, 2026 by elastic
      Try Pulumi Cloud free. Your team will thank you.