1. Packages
  2. Elasticstack Provider
  3. API Docs
  4. ElasticsearchClusterSettings
elasticstack 0.11.15 published on Wednesday, Apr 23, 2025 by elastic

elasticstack.ElasticsearchClusterSettings

Explore with Pulumi AI

elasticstack logo
elasticstack 0.11.15 published on Wednesday, Apr 23, 2025 by elastic

    Updates cluster-wide settings. If the Elasticsearch security features are enabled, you must have the manage cluster privilege to use this API. See, https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-update-settings.html

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.elasticstack.ElasticsearchClusterSettings;
    import com.pulumi.elasticstack.ElasticsearchClusterSettingsArgs;
    import com.pulumi.elasticstack.inputs.ElasticsearchClusterSettingsPersistentArgs;
    import com.pulumi.elasticstack.inputs.ElasticsearchClusterSettingsTransientArgs;
    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) {
            var myClusterSettings = new ElasticsearchClusterSettings("myClusterSettings", ElasticsearchClusterSettingsArgs.builder()
                .persistent(ElasticsearchClusterSettingsPersistentArgs.builder()
                    .settings(                
                        ElasticsearchClusterSettingsPersistentSettingArgs.builder()
                            .name("indices.lifecycle.poll_interval")
                            .value("10m")
                            .build(),
                        ElasticsearchClusterSettingsPersistentSettingArgs.builder()
                            .name("indices.recovery.max_bytes_per_sec")
                            .value("50mb")
                            .build(),
                        ElasticsearchClusterSettingsPersistentSettingArgs.builder()
                            .name("indices.breaker.total.limit")
                            .value("65%")
                            .build(),
                        ElasticsearchClusterSettingsPersistentSettingArgs.builder()
                            .name("xpack.security.audit.logfile.events.include")
                            .valueList(                        
                                "ACCESS_DENIED",
                                "ACCESS_GRANTED")
                            .build())
                    .build())
                .transient_(ElasticsearchClusterSettingsTransientArgs.builder()
                    .settings(ElasticsearchClusterSettingsTransientSettingArgs.builder()
                        .name("indices.breaker.total.limit")
                        .value("60%")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      myClusterSettings:
        type: elasticstack:ElasticsearchClusterSettings
        properties:
          persistent:
            settings:
              - name: indices.lifecycle.poll_interval
                value: 10m
              - name: indices.recovery.max_bytes_per_sec
                value: 50mb
              - name: indices.breaker.total.limit
                value: 65%
              - name: xpack.security.audit.logfile.events.include
                valueList:
                  - ACCESS_DENIED
                  - ACCESS_GRANTED
          transient:
            settings:
              - name: indices.breaker.total.limit
                value: 60%
    

    Create ElasticsearchClusterSettings Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ElasticsearchClusterSettings(name: string, args?: ElasticsearchClusterSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def ElasticsearchClusterSettings(resource_name: str,
                                     args: Optional[ElasticsearchClusterSettingsArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ElasticsearchClusterSettings(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     elasticsearch_connection: Optional[ElasticsearchClusterSettingsElasticsearchConnectionArgs] = None,
                                     persistent: Optional[ElasticsearchClusterSettingsPersistentArgs] = None,
                                     transient: Optional[ElasticsearchClusterSettingsTransientArgs] = None)
    func NewElasticsearchClusterSettings(ctx *Context, name string, args *ElasticsearchClusterSettingsArgs, opts ...ResourceOption) (*ElasticsearchClusterSettings, error)
    public ElasticsearchClusterSettings(string name, ElasticsearchClusterSettingsArgs? args = null, CustomResourceOptions? opts = null)
    public ElasticsearchClusterSettings(String name, ElasticsearchClusterSettingsArgs args)
    public ElasticsearchClusterSettings(String name, ElasticsearchClusterSettingsArgs args, CustomResourceOptions options)
    
    type: elasticstack:ElasticsearchClusterSettings
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ElasticsearchClusterSettingsArgs
    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 ElasticsearchClusterSettingsArgs
    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 ElasticsearchClusterSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ElasticsearchClusterSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ElasticsearchClusterSettingsArgs
    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 elasticsearchClusterSettingsResource = new Elasticstack.ElasticsearchClusterSettings("elasticsearchClusterSettingsResource", new()
    {
        Persistent = new Elasticstack.Inputs.ElasticsearchClusterSettingsPersistentArgs
        {
            Settings = new[]
            {
                new Elasticstack.Inputs.ElasticsearchClusterSettingsPersistentSettingArgs
                {
                    Name = "string",
                    Value = "string",
                    ValueLists = new[]
                    {
                        "string",
                    },
                },
            },
        },
        Transient = new Elasticstack.Inputs.ElasticsearchClusterSettingsTransientArgs
        {
            Settings = new[]
            {
                new Elasticstack.Inputs.ElasticsearchClusterSettingsTransientSettingArgs
                {
                    Name = "string",
                    Value = "string",
                    ValueLists = new[]
                    {
                        "string",
                    },
                },
            },
        },
    });
    
    example, err := elasticstack.NewElasticsearchClusterSettings(ctx, "elasticsearchClusterSettingsResource", &elasticstack.ElasticsearchClusterSettingsArgs{
    	Persistent: &elasticstack.ElasticsearchClusterSettingsPersistentArgs{
    		Settings: elasticstack.ElasticsearchClusterSettingsPersistentSettingArray{
    			&elasticstack.ElasticsearchClusterSettingsPersistentSettingArgs{
    				Name:  pulumi.String("string"),
    				Value: pulumi.String("string"),
    				ValueLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Transient: &elasticstack.ElasticsearchClusterSettingsTransientArgs{
    		Settings: elasticstack.ElasticsearchClusterSettingsTransientSettingArray{
    			&elasticstack.ElasticsearchClusterSettingsTransientSettingArgs{
    				Name:  pulumi.String("string"),
    				Value: pulumi.String("string"),
    				ValueLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var elasticsearchClusterSettingsResource = new ElasticsearchClusterSettings("elasticsearchClusterSettingsResource", ElasticsearchClusterSettingsArgs.builder()
        .persistent(ElasticsearchClusterSettingsPersistentArgs.builder()
            .settings(ElasticsearchClusterSettingsPersistentSettingArgs.builder()
                .name("string")
                .value("string")
                .valueLists("string")
                .build())
            .build())
        .transient_(ElasticsearchClusterSettingsTransientArgs.builder()
            .settings(ElasticsearchClusterSettingsTransientSettingArgs.builder()
                .name("string")
                .value("string")
                .valueLists("string")
                .build())
            .build())
        .build());
    
    elasticsearch_cluster_settings_resource = elasticstack.ElasticsearchClusterSettings("elasticsearchClusterSettingsResource",
        persistent={
            "settings": [{
                "name": "string",
                "value": "string",
                "value_lists": ["string"],
            }],
        },
        transient={
            "settings": [{
                "name": "string",
                "value": "string",
                "value_lists": ["string"],
            }],
        })
    
    const elasticsearchClusterSettingsResource = new elasticstack.ElasticsearchClusterSettings("elasticsearchClusterSettingsResource", {
        persistent: {
            settings: [{
                name: "string",
                value: "string",
                valueLists: ["string"],
            }],
        },
        transient: {
            settings: [{
                name: "string",
                value: "string",
                valueLists: ["string"],
            }],
        },
    });
    
    type: elasticstack:ElasticsearchClusterSettings
    properties:
        persistent:
            settings:
                - name: string
                  value: string
                  valueLists:
                    - string
        transient:
            settings:
                - name: string
                  value: string
                  valueLists:
                    - string
    

    ElasticsearchClusterSettings 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 ElasticsearchClusterSettings resource accepts the following input properties:

    ElasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnection
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    Persistent ElasticsearchClusterSettingsPersistent
    Settings will apply across restarts.
    Transient ElasticsearchClusterSettingsTransient
    Settings do not survive a full cluster restart.
    ElasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnectionArgs
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    Persistent ElasticsearchClusterSettingsPersistentArgs
    Settings will apply across restarts.
    Transient ElasticsearchClusterSettingsTransientArgs
    Settings do not survive a full cluster restart.
    elasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnection
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent ElasticsearchClusterSettingsPersistent
    Settings will apply across restarts.
    transient_ ElasticsearchClusterSettingsTransient
    Settings do not survive a full cluster restart.
    elasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnection
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent ElasticsearchClusterSettingsPersistent
    Settings will apply across restarts.
    transient ElasticsearchClusterSettingsTransient
    Settings do not survive a full cluster restart.
    elasticsearch_connection ElasticsearchClusterSettingsElasticsearchConnectionArgs
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent ElasticsearchClusterSettingsPersistentArgs
    Settings will apply across restarts.
    transient ElasticsearchClusterSettingsTransientArgs
    Settings do not survive a full cluster restart.
    elasticsearchConnection Property Map
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent Property Map
    Settings will apply across restarts.
    transient Property Map
    Settings do not survive a full cluster restart.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ElasticsearchClusterSettings resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ElasticsearchClusterSettings Resource

    Get an existing ElasticsearchClusterSettings 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?: ElasticsearchClusterSettingsState, opts?: CustomResourceOptions): ElasticsearchClusterSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            elasticsearch_connection: Optional[ElasticsearchClusterSettingsElasticsearchConnectionArgs] = None,
            persistent: Optional[ElasticsearchClusterSettingsPersistentArgs] = None,
            transient: Optional[ElasticsearchClusterSettingsTransientArgs] = None) -> ElasticsearchClusterSettings
    func GetElasticsearchClusterSettings(ctx *Context, name string, id IDInput, state *ElasticsearchClusterSettingsState, opts ...ResourceOption) (*ElasticsearchClusterSettings, error)
    public static ElasticsearchClusterSettings Get(string name, Input<string> id, ElasticsearchClusterSettingsState? state, CustomResourceOptions? opts = null)
    public static ElasticsearchClusterSettings get(String name, Output<String> id, ElasticsearchClusterSettingsState state, CustomResourceOptions options)
    resources:  _:    type: elasticstack:ElasticsearchClusterSettings    get:      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:
    ElasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnection
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    Persistent ElasticsearchClusterSettingsPersistent
    Settings will apply across restarts.
    Transient ElasticsearchClusterSettingsTransient
    Settings do not survive a full cluster restart.
    ElasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnectionArgs
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    Persistent ElasticsearchClusterSettingsPersistentArgs
    Settings will apply across restarts.
    Transient ElasticsearchClusterSettingsTransientArgs
    Settings do not survive a full cluster restart.
    elasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnection
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent ElasticsearchClusterSettingsPersistent
    Settings will apply across restarts.
    transient_ ElasticsearchClusterSettingsTransient
    Settings do not survive a full cluster restart.
    elasticsearchConnection ElasticsearchClusterSettingsElasticsearchConnection
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent ElasticsearchClusterSettingsPersistent
    Settings will apply across restarts.
    transient ElasticsearchClusterSettingsTransient
    Settings do not survive a full cluster restart.
    elasticsearch_connection ElasticsearchClusterSettingsElasticsearchConnectionArgs
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent ElasticsearchClusterSettingsPersistentArgs
    Settings will apply across restarts.
    transient ElasticsearchClusterSettingsTransientArgs
    Settings do not survive a full cluster restart.
    elasticsearchConnection Property Map
    Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead.

    Deprecated: Deprecated

    persistent Property Map
    Settings will apply across restarts.
    transient Property Map
    Settings do not survive a full cluster restart.

    Supporting Types

    ElasticsearchClusterSettingsElasticsearchConnection, ElasticsearchClusterSettingsElasticsearchConnectionArgs

    ApiKey string
    API Key to use for authentication to Elasticsearch
    BearerToken string
    Bearer Token to use for authentication to Elasticsearch
    CaData string
    PEM-encoded custom Certificate Authority certificate
    CaFile string
    Path to a custom Certificate Authority certificate
    CertData string
    PEM encoded certificate for client auth
    CertFile string
    Path to a file containing the PEM encoded certificate for client auth
    Endpoints List<string>
    EsClientAuthentication string
    ES Client Authentication field to be used with the JWT token
    Insecure bool
    Disable TLS certificate validation
    KeyData string
    PEM encoded private key for client auth
    KeyFile string
    Path to a file containing the PEM encoded private key for client auth
    Password string
    Password to use for API authentication to Elasticsearch.
    Username string
    Username to use for API authentication to Elasticsearch.
    ApiKey string
    API Key to use for authentication to Elasticsearch
    BearerToken string
    Bearer Token to use for authentication to Elasticsearch
    CaData string
    PEM-encoded custom Certificate Authority certificate
    CaFile string
    Path to a custom Certificate Authority certificate
    CertData string
    PEM encoded certificate for client auth
    CertFile string
    Path to a file containing the PEM encoded certificate for client auth
    Endpoints []string
    EsClientAuthentication string
    ES Client Authentication field to be used with the JWT token
    Insecure bool
    Disable TLS certificate validation
    KeyData string
    PEM encoded private key for client auth
    KeyFile string
    Path to a file containing the PEM encoded private key for client auth
    Password string
    Password to use for API authentication to Elasticsearch.
    Username string
    Username to use for API authentication to Elasticsearch.
    apiKey String
    API Key to use for authentication to Elasticsearch
    bearerToken String
    Bearer Token to use for authentication to Elasticsearch
    caData String
    PEM-encoded custom Certificate Authority certificate
    caFile String
    Path to a custom Certificate Authority certificate
    certData String
    PEM encoded certificate for client auth
    certFile String
    Path to a file containing the PEM encoded certificate for client auth
    endpoints List<String>
    esClientAuthentication String
    ES Client Authentication field to be used with the JWT token
    insecure Boolean
    Disable TLS certificate validation
    keyData String
    PEM encoded private key for client auth
    keyFile String
    Path to a file containing the PEM encoded private key for client auth
    password String
    Password to use for API authentication to Elasticsearch.
    username String
    Username to use for API authentication to Elasticsearch.
    apiKey string
    API Key to use for authentication to Elasticsearch
    bearerToken string
    Bearer Token to use for authentication to Elasticsearch
    caData string
    PEM-encoded custom Certificate Authority certificate
    caFile string
    Path to a custom Certificate Authority certificate
    certData string
    PEM encoded certificate for client auth
    certFile string
    Path to a file containing the PEM encoded certificate for client auth
    endpoints string[]
    esClientAuthentication string
    ES Client Authentication field to be used with the JWT token
    insecure boolean
    Disable TLS certificate validation
    keyData string
    PEM encoded private key for client auth
    keyFile string
    Path to a file containing the PEM encoded private key for client auth
    password string
    Password to use for API authentication to Elasticsearch.
    username string
    Username to use for API authentication to Elasticsearch.
    api_key str
    API Key to use for authentication to Elasticsearch
    bearer_token str
    Bearer Token to use for authentication to Elasticsearch
    ca_data str
    PEM-encoded custom Certificate Authority certificate
    ca_file str
    Path to a custom Certificate Authority certificate
    cert_data str
    PEM encoded certificate for client auth
    cert_file str
    Path to a file containing the PEM encoded certificate for client auth
    endpoints Sequence[str]
    es_client_authentication str
    ES Client Authentication field to be used with the JWT token
    insecure bool
    Disable TLS certificate validation
    key_data str
    PEM encoded private key for client auth
    key_file str
    Path to a file containing the PEM encoded private key for client auth
    password str
    Password to use for API authentication to Elasticsearch.
    username str
    Username to use for API authentication to Elasticsearch.
    apiKey String
    API Key to use for authentication to Elasticsearch
    bearerToken String
    Bearer Token to use for authentication to Elasticsearch
    caData String
    PEM-encoded custom Certificate Authority certificate
    caFile String
    Path to a custom Certificate Authority certificate
    certData String
    PEM encoded certificate for client auth
    certFile String
    Path to a file containing the PEM encoded certificate for client auth
    endpoints List<String>
    esClientAuthentication String
    ES Client Authentication field to be used with the JWT token
    insecure Boolean
    Disable TLS certificate validation
    keyData String
    PEM encoded private key for client auth
    keyFile String
    Path to a file containing the PEM encoded private key for client auth
    password String
    Password to use for API authentication to Elasticsearch.
    username String
    Username to use for API authentication to Elasticsearch.

    ElasticsearchClusterSettingsPersistent, ElasticsearchClusterSettingsPersistentArgs

    settings List<Property Map>
    Defines the setting in the cluster.

    ElasticsearchClusterSettingsPersistentSetting, ElasticsearchClusterSettingsPersistentSettingArgs

    Name string
    The name of the setting to set and track.
    Value string
    The value of the setting to set and track.
    ValueLists List<string>
    The list of values to be set for the key, where the list is required.
    Name string
    The name of the setting to set and track.
    Value string
    The value of the setting to set and track.
    ValueLists []string
    The list of values to be set for the key, where the list is required.
    name String
    The name of the setting to set and track.
    value String
    The value of the setting to set and track.
    valueLists List<String>
    The list of values to be set for the key, where the list is required.
    name string
    The name of the setting to set and track.
    value string
    The value of the setting to set and track.
    valueLists string[]
    The list of values to be set for the key, where the list is required.
    name str
    The name of the setting to set and track.
    value str
    The value of the setting to set and track.
    value_lists Sequence[str]
    The list of values to be set for the key, where the list is required.
    name String
    The name of the setting to set and track.
    value String
    The value of the setting to set and track.
    valueLists List<String>
    The list of values to be set for the key, where the list is required.

    ElasticsearchClusterSettingsTransient, ElasticsearchClusterSettingsTransientArgs

    Settings []ElasticsearchClusterSettingsTransientSetting
    Defines the setting in the cluster.
    settings ElasticsearchClusterSettingsTransientSetting[]
    Defines the setting in the cluster.
    settings List<Property Map>
    Defines the setting in the cluster.

    ElasticsearchClusterSettingsTransientSetting, ElasticsearchClusterSettingsTransientSettingArgs

    Name string
    The name of the setting to set and track.
    Value string
    The value of the setting to set and track.
    ValueLists List<string>
    The list of values to be set for the key, where the list is required.
    Name string
    The name of the setting to set and track.
    Value string
    The value of the setting to set and track.
    ValueLists []string
    The list of values to be set for the key, where the list is required.
    name String
    The name of the setting to set and track.
    value String
    The value of the setting to set and track.
    valueLists List<String>
    The list of values to be set for the key, where the list is required.
    name string
    The name of the setting to set and track.
    value string
    The value of the setting to set and track.
    valueLists string[]
    The list of values to be set for the key, where the list is required.
    name str
    The name of the setting to set and track.
    value str
    The value of the setting to set and track.
    value_lists Sequence[str]
    The list of values to be set for the key, where the list is required.
    name String
    The name of the setting to set and track.
    value String
    The value of the setting to set and track.
    valueLists List<String>
    The list of values to be set for the key, where the list is required.

    Package Details

    Repository
    elasticstack elastic/terraform-provider-elasticstack
    License
    Notes
    This Pulumi package is based on the elasticstack Terraform Provider.
    elasticstack logo
    elasticstack 0.11.15 published on Wednesday, Apr 23, 2025 by elastic