1. Packages
  2. ElasticCloud (EC) Provider
  3. API Docs
  4. getStack
ElasticCloud (EC) v0.10.5 published on Wednesday, Feb 12, 2025 by Pulumi

ec.getStack

Explore with Pulumi AI

ElasticCloud (EC) v0.10.5 published on Wednesday, Feb 12, 2025 by Pulumi

Use this data source to retrieve information about an existing Elastic Cloud stack.

Note on regions Before you start, you might want to check the full list of regions available in Elasticsearch Service (ESS).

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ec from "@pulumi/ec";

const latest = ec.getStack({
    versionRegex: "latest",
    region: "us-east-1",
    lock: true,
});
const latestPatch = ec.getStack({
    versionRegex: "7.9.?",
    region: "us-east-1",
});
Copy
import pulumi
import pulumi_ec as ec

latest = ec.get_stack(version_regex="latest",
    region="us-east-1",
    lock=True)
latest_patch = ec.get_stack(version_regex="7.9.?",
    region="us-east-1")
Copy
package main

import (
	"github.com/pulumi/pulumi-ec/sdk/go/ec"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ec.GetStack(ctx, &ec.GetStackArgs{
			VersionRegex: "latest",
			Region:       "us-east-1",
			Lock:         pulumi.BoolRef(true),
		}, nil)
		if err != nil {
			return err
		}
		_, err = ec.GetStack(ctx, &ec.GetStackArgs{
			VersionRegex: "7.9.?",
			Region:       "us-east-1",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ElasticCloud = Pulumi.ElasticCloud;

return await Deployment.RunAsync(() => 
{
    var latest = ElasticCloud.GetStack.Invoke(new()
    {
        VersionRegex = "latest",
        Region = "us-east-1",
        Lock = true,
    });

    var latestPatch = ElasticCloud.GetStack.Invoke(new()
    {
        VersionRegex = "7.9.?",
        Region = "us-east-1",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ec.EcFunctions;
import com.pulumi.ec.inputs.GetStackArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var latest = EcFunctions.getStack(GetStackArgs.builder()
            .versionRegex("latest")
            .region("us-east-1")
            .lock(true)
            .build());

        final var latestPatch = EcFunctions.getStack(GetStackArgs.builder()
            .versionRegex("7.9.?")
            .region("us-east-1")
            .build());

    }
}
Copy
variables:
  latest:
    fn::invoke:
      function: ec:getStack
      arguments:
        versionRegex: latest
        region: us-east-1
        lock: true
  latestPatch:
    fn::invoke:
      function: ec:getStack
      arguments:
        versionRegex: 7.9.?
        region: us-east-1
Copy

Using getStack

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getStack(args: GetStackArgs, opts?: InvokeOptions): Promise<GetStackResult>
function getStackOutput(args: GetStackOutputArgs, opts?: InvokeOptions): Output<GetStackResult>
Copy
def get_stack(lock: Optional[bool] = None,
              region: Optional[str] = None,
              version_regex: Optional[str] = None,
              opts: Optional[InvokeOptions] = None) -> GetStackResult
def get_stack_output(lock: Optional[pulumi.Input[bool]] = None,
              region: Optional[pulumi.Input[str]] = None,
              version_regex: Optional[pulumi.Input[str]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[GetStackResult]
Copy
func GetStack(ctx *Context, args *GetStackArgs, opts ...InvokeOption) (*GetStackResult, error)
func GetStackOutput(ctx *Context, args *GetStackOutputArgs, opts ...InvokeOption) GetStackResultOutput
Copy

> Note: This function is named GetStack in the Go SDK.

public static class GetStack 
{
    public static Task<GetStackResult> InvokeAsync(GetStackArgs args, InvokeOptions? opts = null)
    public static Output<GetStackResult> Invoke(GetStackInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetStackResult> getStack(GetStackArgs args, InvokeOptions options)
public static Output<GetStackResult> getStack(GetStackArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ec:index/getStack:getStack
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Region This property is required. string
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
VersionRegex This property is required. string
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
Lock bool
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
Region This property is required. string
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
VersionRegex This property is required. string
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
Lock bool
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
region This property is required. String
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
versionRegex This property is required. String
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock Boolean
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
region This property is required. string
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
versionRegex This property is required. string
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock boolean
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
region This property is required. str
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
version_regex This property is required. str
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock bool
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
region This property is required. String
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
versionRegex This property is required. String
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock Boolean
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.

getStack Result

The following output properties are available:

Accessible bool
To have this version accessible/not accessible by the calling user. This is only relevant for Elasticsearch Service (ESS), not for ECE.
Allowlisted bool
To include/not include this version in the allowlist. This is only relevant for Elasticsearch Service (ESS), not for ECE.
Apms List<Pulumi.ElasticCloud.Outputs.GetStackApm>
Information for APM workloads on this stack version.
Elasticsearches List<Pulumi.ElasticCloud.Outputs.GetStackElasticsearch>
Information for Elasticsearch workloads on this stack version.
EnterpriseSearches List<Pulumi.ElasticCloud.Outputs.GetStackEnterpriseSearch>
Information for Enterprise Search workloads on this stack version.
Id string
Unique identifier of this data source.
Kibanas List<Pulumi.ElasticCloud.Outputs.GetStackKibana>
Information for Kibana workloads on this stack version.
MinUpgradableFrom string
The minimum stack version which can be upgraded to this stack version.
Region string
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
UpgradableTos List<string>
A list of stack versions which this stack version can be upgraded to.
Version string
The stack version
VersionRegex string
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
Lock bool
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
Accessible bool
To have this version accessible/not accessible by the calling user. This is only relevant for Elasticsearch Service (ESS), not for ECE.
Allowlisted bool
To include/not include this version in the allowlist. This is only relevant for Elasticsearch Service (ESS), not for ECE.
Apms []GetStackApm
Information for APM workloads on this stack version.
Elasticsearches []GetStackElasticsearch
Information for Elasticsearch workloads on this stack version.
EnterpriseSearches []GetStackEnterpriseSearch
Information for Enterprise Search workloads on this stack version.
Id string
Unique identifier of this data source.
Kibanas []GetStackKibana
Information for Kibana workloads on this stack version.
MinUpgradableFrom string
The minimum stack version which can be upgraded to this stack version.
Region string
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
UpgradableTos []string
A list of stack versions which this stack version can be upgraded to.
Version string
The stack version
VersionRegex string
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
Lock bool
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
accessible Boolean
To have this version accessible/not accessible by the calling user. This is only relevant for Elasticsearch Service (ESS), not for ECE.
allowlisted Boolean
To include/not include this version in the allowlist. This is only relevant for Elasticsearch Service (ESS), not for ECE.
apms List<GetStackApm>
Information for APM workloads on this stack version.
elasticsearches List<GetStackElasticsearch>
Information for Elasticsearch workloads on this stack version.
enterpriseSearches List<GetStackEnterpriseSearch>
Information for Enterprise Search workloads on this stack version.
id String
Unique identifier of this data source.
kibanas List<GetStackKibana>
Information for Kibana workloads on this stack version.
minUpgradableFrom String
The minimum stack version which can be upgraded to this stack version.
region String
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
upgradableTos List<String>
A list of stack versions which this stack version can be upgraded to.
version String
The stack version
versionRegex String
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock Boolean
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
accessible boolean
To have this version accessible/not accessible by the calling user. This is only relevant for Elasticsearch Service (ESS), not for ECE.
allowlisted boolean
To include/not include this version in the allowlist. This is only relevant for Elasticsearch Service (ESS), not for ECE.
apms GetStackApm[]
Information for APM workloads on this stack version.
elasticsearches GetStackElasticsearch[]
Information for Elasticsearch workloads on this stack version.
enterpriseSearches GetStackEnterpriseSearch[]
Information for Enterprise Search workloads on this stack version.
id string
Unique identifier of this data source.
kibanas GetStackKibana[]
Information for Kibana workloads on this stack version.
minUpgradableFrom string
The minimum stack version which can be upgraded to this stack version.
region string
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
upgradableTos string[]
A list of stack versions which this stack version can be upgraded to.
version string
The stack version
versionRegex string
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock boolean
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
accessible bool
To have this version accessible/not accessible by the calling user. This is only relevant for Elasticsearch Service (ESS), not for ECE.
allowlisted bool
To include/not include this version in the allowlist. This is only relevant for Elasticsearch Service (ESS), not for ECE.
apms Sequence[GetStackApm]
Information for APM workloads on this stack version.
elasticsearches Sequence[GetStackElasticsearch]
Information for Elasticsearch workloads on this stack version.
enterprise_searches Sequence[GetStackEnterpriseSearch]
Information for Enterprise Search workloads on this stack version.
id str
Unique identifier of this data source.
kibanas Sequence[GetStackKibana]
Information for Kibana workloads on this stack version.
min_upgradable_from str
The minimum stack version which can be upgraded to this stack version.
region str
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
upgradable_tos Sequence[str]
A list of stack versions which this stack version can be upgraded to.
version str
The stack version
version_regex str
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock bool
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.
accessible Boolean
To have this version accessible/not accessible by the calling user. This is only relevant for Elasticsearch Service (ESS), not for ECE.
allowlisted Boolean
To include/not include this version in the allowlist. This is only relevant for Elasticsearch Service (ESS), not for ECE.
apms List<Property Map>
Information for APM workloads on this stack version.
elasticsearches List<Property Map>
Information for Elasticsearch workloads on this stack version.
enterpriseSearches List<Property Map>
Information for Enterprise Search workloads on this stack version.
id String
Unique identifier of this data source.
kibanas List<Property Map>
Information for Kibana workloads on this stack version.
minUpgradableFrom String
The minimum stack version which can be upgraded to this stack version.
region String
Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
upgradableTos List<String>
A list of stack versions which this stack version can be upgraded to.
version String
The stack version
versionRegex String
Regex to filter the available stacks. Can be any valid regex expression, when multiple stacks are matched through a regex, the latest version is returned. latest is also accepted to obtain the latest available stack version.
lock Boolean
Lock the latest version_regex obtained, so that the new stack release doesn't cascade the changes down to the deployments. It can be changed at any time.

Supporting Types

GetStackApm

CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. List<string>
List of node types compatible with this one.
Denylists This property is required. List<string>
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the APM instance.
CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. []string
List of node types compatible with this one.
Denylists This property is required. []string
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the APM instance.
capacityConstraintsMax This property is required. Integer
Maximum size of the instances.
capacityConstraintsMin This property is required. Integer
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the APM instance.
capacityConstraintsMax This property is required. number
Maximum size of the instances.
capacityConstraintsMin This property is required. number
Minimum size of the instances.
compatibleNodeTypes This property is required. string[]
List of node types compatible with this one.
denylists This property is required. string[]
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. string
Docker image to use for the APM instance.
capacity_constraints_max This property is required. int
Maximum size of the instances.
capacity_constraints_min This property is required. int
Minimum size of the instances.
compatible_node_types This property is required. Sequence[str]
List of node types compatible with this one.
denylists This property is required. Sequence[str]
List of configuration options that cannot be overridden by user settings.
docker_image This property is required. str
Docker image to use for the APM instance.
capacityConstraintsMax This property is required. Number
Maximum size of the instances.
capacityConstraintsMin This property is required. Number
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the APM instance.

GetStackElasticsearch

CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. List<string>
List of node types compatible with this one.
DefaultPlugins This property is required. List<string>
List of default plugins.
Denylists This property is required. List<string>
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the Elasticsearch cluster instances.
Plugins This property is required. List<string>
List of available plugins to be specified by users in Elasticsearch cluster instances.
CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. []string
List of node types compatible with this one.
DefaultPlugins This property is required. []string
List of default plugins.
Denylists This property is required. []string
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the Elasticsearch cluster instances.
Plugins This property is required. []string
List of available plugins to be specified by users in Elasticsearch cluster instances.
capacityConstraintsMax This property is required. Integer
Maximum size of the instances.
capacityConstraintsMin This property is required. Integer
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
defaultPlugins This property is required. List<String>
List of default plugins.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the Elasticsearch cluster instances.
plugins This property is required. List<String>
List of available plugins to be specified by users in Elasticsearch cluster instances.
capacityConstraintsMax This property is required. number
Maximum size of the instances.
capacityConstraintsMin This property is required. number
Minimum size of the instances.
compatibleNodeTypes This property is required. string[]
List of node types compatible with this one.
defaultPlugins This property is required. string[]
List of default plugins.
denylists This property is required. string[]
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. string
Docker image to use for the Elasticsearch cluster instances.
plugins This property is required. string[]
List of available plugins to be specified by users in Elasticsearch cluster instances.
capacity_constraints_max This property is required. int
Maximum size of the instances.
capacity_constraints_min This property is required. int
Minimum size of the instances.
compatible_node_types This property is required. Sequence[str]
List of node types compatible with this one.
default_plugins This property is required. Sequence[str]
List of default plugins.
denylists This property is required. Sequence[str]
List of configuration options that cannot be overridden by user settings.
docker_image This property is required. str
Docker image to use for the Elasticsearch cluster instances.
plugins This property is required. Sequence[str]
List of available plugins to be specified by users in Elasticsearch cluster instances.
capacityConstraintsMax This property is required. Number
Maximum size of the instances.
capacityConstraintsMin This property is required. Number
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
defaultPlugins This property is required. List<String>
List of default plugins.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the Elasticsearch cluster instances.
plugins This property is required. List<String>
List of available plugins to be specified by users in Elasticsearch cluster instances.

GetStackEnterpriseSearch

CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. List<string>
List of node types compatible with this one.
Denylists This property is required. List<string>
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the Enterprise Search instance.
CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. []string
List of node types compatible with this one.
Denylists This property is required. []string
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the Enterprise Search instance.
capacityConstraintsMax This property is required. Integer
Maximum size of the instances.
capacityConstraintsMin This property is required. Integer
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the Enterprise Search instance.
capacityConstraintsMax This property is required. number
Maximum size of the instances.
capacityConstraintsMin This property is required. number
Minimum size of the instances.
compatibleNodeTypes This property is required. string[]
List of node types compatible with this one.
denylists This property is required. string[]
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. string
Docker image to use for the Enterprise Search instance.
capacity_constraints_max This property is required. int
Maximum size of the instances.
capacity_constraints_min This property is required. int
Minimum size of the instances.
compatible_node_types This property is required. Sequence[str]
List of node types compatible with this one.
denylists This property is required. Sequence[str]
List of configuration options that cannot be overridden by user settings.
docker_image This property is required. str
Docker image to use for the Enterprise Search instance.
capacityConstraintsMax This property is required. Number
Maximum size of the instances.
capacityConstraintsMin This property is required. Number
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the Enterprise Search instance.

GetStackKibana

CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. List<string>
List of node types compatible with this one.
Denylists This property is required. List<string>
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the Kibana instance.
CapacityConstraintsMax This property is required. int
Maximum size of the instances.
CapacityConstraintsMin This property is required. int
Minimum size of the instances.
CompatibleNodeTypes This property is required. []string
List of node types compatible with this one.
Denylists This property is required. []string
List of configuration options that cannot be overridden by user settings.
DockerImage This property is required. string
Docker image to use for the Kibana instance.
capacityConstraintsMax This property is required. Integer
Maximum size of the instances.
capacityConstraintsMin This property is required. Integer
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the Kibana instance.
capacityConstraintsMax This property is required. number
Maximum size of the instances.
capacityConstraintsMin This property is required. number
Minimum size of the instances.
compatibleNodeTypes This property is required. string[]
List of node types compatible with this one.
denylists This property is required. string[]
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. string
Docker image to use for the Kibana instance.
capacity_constraints_max This property is required. int
Maximum size of the instances.
capacity_constraints_min This property is required. int
Minimum size of the instances.
compatible_node_types This property is required. Sequence[str]
List of node types compatible with this one.
denylists This property is required. Sequence[str]
List of configuration options that cannot be overridden by user settings.
docker_image This property is required. str
Docker image to use for the Kibana instance.
capacityConstraintsMax This property is required. Number
Maximum size of the instances.
capacityConstraintsMin This property is required. Number
Minimum size of the instances.
compatibleNodeTypes This property is required. List<String>
List of node types compatible with this one.
denylists This property is required. List<String>
List of configuration options that cannot be overridden by user settings.
dockerImage This property is required. String
Docker image to use for the Kibana instance.

Package Details

Repository
ec pulumi/pulumi-ec
License
Apache-2.0
Notes
This Pulumi package is based on the ec Terraform Provider.
ElasticCloud (EC) v0.10.5 published on Wednesday, Feb 12, 2025 by Pulumi