1. Packages
  2. ElasticCloud (EC)
  3. API Docs
  4. getStack
ElasticCloud (EC) v0.8.0 published on Thursday, Apr 4, 2024 by Pulumi

ec.getStack

Explore with Pulumi AI

ec logo
ElasticCloud (EC) v0.8.0 published on Thursday, Apr 4, 2024 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({
        lock: true,
        region: "us-east-1",
        versionRegex: "latest",
    });
    const latestPatch = ec.getStack({
        region: "us-east-1",
        versionRegex: "7.9.?",
    });
    
    import pulumi
    import pulumi_ec as ec
    
    latest = ec.get_stack(lock=True,
        region="us-east-1",
        version_regex="latest")
    latest_patch = ec.get_stack(region="us-east-1",
        version_regex="7.9.?")
    
    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{
    			Lock:         pulumi.BoolRef(true),
    			Region:       "us-east-1",
    			VersionRegex: "latest",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = ec.GetStack(ctx, &ec.GetStackArgs{
    			Region:       "us-east-1",
    			VersionRegex: "7.9.?",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ElasticCloud = Pulumi.ElasticCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var latest = ElasticCloud.GetStack.Invoke(new()
        {
            Lock = true,
            Region = "us-east-1",
            VersionRegex = "latest",
        });
    
        var latestPatch = ElasticCloud.GetStack.Invoke(new()
        {
            Region = "us-east-1",
            VersionRegex = "7.9.?",
        });
    
    });
    
    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()
                .lock(true)
                .region("us-east-1")
                .versionRegex("latest")
                .build());
    
            final var latestPatch = EcFunctions.getStack(GetStackArgs.builder()
                .region("us-east-1")
                .versionRegex("7.9.?")
                .build());
    
        }
    }
    
    variables:
      latest:
        fn::invoke:
          Function: ec:getStack
          Arguments:
            lock: true
            region: us-east-1
            versionRegex: latest
      latestPatch:
        fn::invoke:
          Function: ec:getStack
          Arguments:
            region: us-east-1
            versionRegex: 7.9.?
    

    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>
    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]
    func GetStack(ctx *Context, args *GetStackArgs, opts ...InvokeOption) (*GetStackResult, error)
    func GetStackOutput(ctx *Context, args *GetStackOutputArgs, opts ...InvokeOption) GetStackResultOutput

    > 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)
    }
    public static CompletableFuture<GetStackResult> getStack(GetStackArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: ec:index/getStack:getStack
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Region string
    Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
    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.
    Region string
    Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
    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.
    region String
    Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
    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.
    region string
    Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
    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.
    region str
    Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
    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.
    region String
    Region where the stack pack is. For Elastic Cloud Enterprise (ECE) installations, use ece-region.
    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.

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

    GetStackElasticsearch

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

    GetStackEnterpriseSearch

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

    GetStackKibana

    CapacityConstraintsMax int
    Maximum size of the instances.
    CapacityConstraintsMin int
    Minimum size of the instances.
    CompatibleNodeTypes List<string>
    List of node types compatible with this one.
    Denylists List<string>
    List of configuration options that cannot be overridden by user settings.
    DockerImage string
    Docker image to use for the Kibana instance.
    CapacityConstraintsMax int
    Maximum size of the instances.
    CapacityConstraintsMin int
    Minimum size of the instances.
    CompatibleNodeTypes []string
    List of node types compatible with this one.
    Denylists []string
    List of configuration options that cannot be overridden by user settings.
    DockerImage string
    Docker image to use for the Kibana instance.
    capacityConstraintsMax Integer
    Maximum size of the instances.
    capacityConstraintsMin Integer
    Minimum size of the instances.
    compatibleNodeTypes List<String>
    List of node types compatible with this one.
    denylists List<String>
    List of configuration options that cannot be overridden by user settings.
    dockerImage String
    Docker image to use for the Kibana instance.
    capacityConstraintsMax number
    Maximum size of the instances.
    capacityConstraintsMin number
    Minimum size of the instances.
    compatibleNodeTypes string[]
    List of node types compatible with this one.
    denylists string[]
    List of configuration options that cannot be overridden by user settings.
    dockerImage string
    Docker image to use for the Kibana instance.
    capacity_constraints_max int
    Maximum size of the instances.
    capacity_constraints_min int
    Minimum size of the instances.
    compatible_node_types Sequence[str]
    List of node types compatible with this one.
    denylists Sequence[str]
    List of configuration options that cannot be overridden by user settings.
    docker_image str
    Docker image to use for the Kibana instance.
    capacityConstraintsMax Number
    Maximum size of the instances.
    capacityConstraintsMin Number
    Minimum size of the instances.
    compatibleNodeTypes List<String>
    List of node types compatible with this one.
    denylists List<String>
    List of configuration options that cannot be overridden by user settings.
    dockerImage 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.
    ec logo
    ElasticCloud (EC) v0.8.0 published on Thursday, Apr 4, 2024 by Pulumi