1. Packages
  2. Packages
  3. Elasticstack Provider
  4. API Docs
  5. ElasticsearchCcrAutoFollowPattern
Viewing docs for elasticstack 0.16.3
published on Thursday, Jul 23, 2026 by elastic
Viewing docs for elasticstack 0.16.3
published on Thursday, Jul 23, 2026 by elastic

    Manages a Cross-Cluster Replication (CCR) auto-follow pattern. CCR requires a Platinum or Enterprise license.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as elasticstack from "@pulumi/elasticstack";
    
    const myPattern = new elasticstack.ElasticsearchCcrAutoFollowPattern("my_pattern", {
        name: "logs-auto-follow",
        remoteCluster: "remote-cluster",
        leaderIndexPatterns: ["logs-*"],
        active: true,
    });
    
    import pulumi
    import pulumi_elasticstack as elasticstack
    
    my_pattern = elasticstack.ElasticsearchCcrAutoFollowPattern("my_pattern",
        name="logs-auto-follow",
        remote_cluster="remote-cluster",
        leader_index_patterns=["logs-*"],
        active=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/elasticstack/elasticstack"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := elasticstack.NewElasticsearchCcrAutoFollowPattern(ctx, "my_pattern", &elasticstack.ElasticsearchCcrAutoFollowPatternArgs{
    			Name:          pulumi.String("logs-auto-follow"),
    			RemoteCluster: pulumi.String("remote-cluster"),
    			LeaderIndexPatterns: pulumi.StringArray{
    				pulumi.String("logs-*"),
    			},
    			Active: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Elasticstack = Pulumi.Elasticstack;
    
    return await Deployment.RunAsync(() => 
    {
        var myPattern = new Elasticstack.ElasticsearchCcrAutoFollowPattern("my_pattern", new()
        {
            Name = "logs-auto-follow",
            RemoteCluster = "remote-cluster",
            LeaderIndexPatterns = new[]
            {
                "logs-*",
            },
            Active = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.elasticstack.ElasticsearchCcrAutoFollowPattern;
    import com.pulumi.elasticstack.ElasticsearchCcrAutoFollowPatternArgs;
    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 myPattern = new ElasticsearchCcrAutoFollowPattern("myPattern", ElasticsearchCcrAutoFollowPatternArgs.builder()
                .name("logs-auto-follow")
                .remoteCluster("remote-cluster")
                .leaderIndexPatterns("logs-*")
                .active(true)
                .build());
    
        }
    }
    
    resources:
      myPattern:
        type: elasticstack:ElasticsearchCcrAutoFollowPattern
        name: my_pattern
        properties:
          name: logs-auto-follow
          remoteCluster: remote-cluster
          leaderIndexPatterns:
            - logs-*
          active: true
    
    Example coming soon!
    

    Create ElasticsearchCcrAutoFollowPattern Resource

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

    Constructor syntax

    new ElasticsearchCcrAutoFollowPattern(name: string, args: ElasticsearchCcrAutoFollowPatternArgs, opts?: CustomResourceOptions);
    @overload
    def ElasticsearchCcrAutoFollowPattern(resource_name: str,
                                          args: ElasticsearchCcrAutoFollowPatternArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ElasticsearchCcrAutoFollowPattern(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          leader_index_patterns: Optional[Sequence[str]] = None,
                                          remote_cluster: Optional[str] = None,
                                          max_read_request_size: Optional[str] = None,
                                          max_write_buffer_size: Optional[str] = None,
                                          follow_index_pattern: Optional[str] = None,
                                          max_outstanding_read_requests: Optional[float] = None,
                                          max_outstanding_write_requests: Optional[float] = None,
                                          max_read_request_operation_count: Optional[float] = None,
                                          active: Optional[bool] = None,
                                          max_retry_delay: Optional[str] = None,
                                          max_write_buffer_count: Optional[float] = None,
                                          leader_index_exclusion_patterns: Optional[Sequence[str]] = None,
                                          max_write_request_operation_count: Optional[float] = None,
                                          max_write_request_size: Optional[str] = None,
                                          name: Optional[str] = None,
                                          read_poll_timeout: Optional[str] = None,
                                          elasticsearch_connections: Optional[Sequence[ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs]] = None,
                                          settings_raw: Optional[str] = None,
                                          timeouts: Optional[ElasticsearchCcrAutoFollowPatternTimeoutsArgs] = None)
    func NewElasticsearchCcrAutoFollowPattern(ctx *Context, name string, args ElasticsearchCcrAutoFollowPatternArgs, opts ...ResourceOption) (*ElasticsearchCcrAutoFollowPattern, error)
    public ElasticsearchCcrAutoFollowPattern(string name, ElasticsearchCcrAutoFollowPatternArgs args, CustomResourceOptions? opts = null)
    public ElasticsearchCcrAutoFollowPattern(String name, ElasticsearchCcrAutoFollowPatternArgs args)
    public ElasticsearchCcrAutoFollowPattern(String name, ElasticsearchCcrAutoFollowPatternArgs args, CustomResourceOptions options)
    
    type: elasticstack:ElasticsearchCcrAutoFollowPattern
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "elasticstack_elasticsearch_ccr_auto_follow_pattern" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ElasticsearchCcrAutoFollowPatternArgs
    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 ElasticsearchCcrAutoFollowPatternArgs
    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 ElasticsearchCcrAutoFollowPatternArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ElasticsearchCcrAutoFollowPatternArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ElasticsearchCcrAutoFollowPatternArgs
    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 elasticsearchCcrAutoFollowPatternResource = new Elasticstack.ElasticsearchCcrAutoFollowPattern("elasticsearchCcrAutoFollowPatternResource", new()
    {
        LeaderIndexPatterns = new[]
        {
            "string",
        },
        RemoteCluster = "string",
        MaxReadRequestSize = "string",
        MaxWriteBufferSize = "string",
        FollowIndexPattern = "string",
        MaxOutstandingReadRequests = 0,
        MaxOutstandingWriteRequests = 0,
        MaxReadRequestOperationCount = 0,
        Active = false,
        MaxRetryDelay = "string",
        MaxWriteBufferCount = 0,
        LeaderIndexExclusionPatterns = new[]
        {
            "string",
        },
        MaxWriteRequestOperationCount = 0,
        MaxWriteRequestSize = "string",
        Name = "string",
        ReadPollTimeout = "string",
        ElasticsearchConnections = new[]
        {
            new Elasticstack.Inputs.ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs
            {
                ApiKey = "string",
                BearerToken = "string",
                CaData = "string",
                CaFile = "string",
                CaFingerprint = "string",
                CertData = "string",
                CertFile = "string",
                Endpoints = new[]
                {
                    "string",
                },
                EsClientAuthentication = "string",
                Headers = 
                {
                    { "string", "string" },
                },
                Insecure = false,
                KeyData = "string",
                KeyFile = "string",
                Password = "string",
                Username = "string",
            },
        },
        SettingsRaw = "string",
        Timeouts = new Elasticstack.Inputs.ElasticsearchCcrAutoFollowPatternTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := elasticstack.NewElasticsearchCcrAutoFollowPattern(ctx, "elasticsearchCcrAutoFollowPatternResource", &elasticstack.ElasticsearchCcrAutoFollowPatternArgs{
    	LeaderIndexPatterns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RemoteCluster:                pulumi.String("string"),
    	MaxReadRequestSize:           pulumi.String("string"),
    	MaxWriteBufferSize:           pulumi.String("string"),
    	FollowIndexPattern:           pulumi.String("string"),
    	MaxOutstandingReadRequests:   pulumi.Float64(0),
    	MaxOutstandingWriteRequests:  pulumi.Float64(0),
    	MaxReadRequestOperationCount: pulumi.Float64(0),
    	Active:                       pulumi.Bool(false),
    	MaxRetryDelay:                pulumi.String("string"),
    	MaxWriteBufferCount:          pulumi.Float64(0),
    	LeaderIndexExclusionPatterns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	MaxWriteRequestOperationCount: pulumi.Float64(0),
    	MaxWriteRequestSize:           pulumi.String("string"),
    	Name:                          pulumi.String("string"),
    	ReadPollTimeout:               pulumi.String("string"),
    	ElasticsearchConnections: elasticstack.ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArray{
    		&elasticstack.ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs{
    			ApiKey:        pulumi.String("string"),
    			BearerToken:   pulumi.String("string"),
    			CaData:        pulumi.String("string"),
    			CaFile:        pulumi.String("string"),
    			CaFingerprint: pulumi.String("string"),
    			CertData:      pulumi.String("string"),
    			CertFile:      pulumi.String("string"),
    			Endpoints: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			EsClientAuthentication: pulumi.String("string"),
    			Headers: pulumi.StringMap{
    				"string": pulumi.String("string"),
    			},
    			Insecure: pulumi.Bool(false),
    			KeyData:  pulumi.String("string"),
    			KeyFile:  pulumi.String("string"),
    			Password: pulumi.String("string"),
    			Username: pulumi.String("string"),
    		},
    	},
    	SettingsRaw: pulumi.String("string"),
    	Timeouts: &elasticstack.ElasticsearchCcrAutoFollowPatternTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    resource "elasticstack_elasticsearch_ccr_auto_follow_pattern" "elasticsearchCcrAutoFollowPatternResource" {
      lifecycle {
        create_before_destroy = true
      }
      leader_index_patterns             = ["string"]
      remote_cluster                    = "string"
      max_read_request_size             = "string"
      max_write_buffer_size             = "string"
      follow_index_pattern              = "string"
      max_outstanding_read_requests     = 0
      max_outstanding_write_requests    = 0
      max_read_request_operation_count  = 0
      active                            = false
      max_retry_delay                   = "string"
      max_write_buffer_count            = 0
      leader_index_exclusion_patterns   = ["string"]
      max_write_request_operation_count = 0
      max_write_request_size            = "string"
      name                              = "string"
      read_poll_timeout                 = "string"
      elasticsearch_connections {
        api_key                  = "string"
        bearer_token             = "string"
        ca_data                  = "string"
        ca_file                  = "string"
        ca_fingerprint           = "string"
        cert_data                = "string"
        cert_file                = "string"
        endpoints                = ["string"]
        es_client_authentication = "string"
        headers = {
          "string" = "string"
        }
        insecure = false
        key_data = "string"
        key_file = "string"
        password = "string"
        username = "string"
      }
      settings_raw = "string"
      timeouts = {
        create = "string"
        delete = "string"
        read   = "string"
        update = "string"
      }
    }
    
    var elasticsearchCcrAutoFollowPatternResource = new ElasticsearchCcrAutoFollowPattern("elasticsearchCcrAutoFollowPatternResource", ElasticsearchCcrAutoFollowPatternArgs.builder()
        .leaderIndexPatterns("string")
        .remoteCluster("string")
        .maxReadRequestSize("string")
        .maxWriteBufferSize("string")
        .followIndexPattern("string")
        .maxOutstandingReadRequests(0.0)
        .maxOutstandingWriteRequests(0.0)
        .maxReadRequestOperationCount(0.0)
        .active(false)
        .maxRetryDelay("string")
        .maxWriteBufferCount(0.0)
        .leaderIndexExclusionPatterns("string")
        .maxWriteRequestOperationCount(0.0)
        .maxWriteRequestSize("string")
        .name("string")
        .readPollTimeout("string")
        .elasticsearchConnections(ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs.builder()
            .apiKey("string")
            .bearerToken("string")
            .caData("string")
            .caFile("string")
            .caFingerprint("string")
            .certData("string")
            .certFile("string")
            .endpoints("string")
            .esClientAuthentication("string")
            .headers(Map.of("string", "string"))
            .insecure(false)
            .keyData("string")
            .keyFile("string")
            .password("string")
            .username("string")
            .build())
        .settingsRaw("string")
        .timeouts(ElasticsearchCcrAutoFollowPatternTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    elasticsearch_ccr_auto_follow_pattern_resource = elasticstack.ElasticsearchCcrAutoFollowPattern("elasticsearchCcrAutoFollowPatternResource",
        leader_index_patterns=["string"],
        remote_cluster="string",
        max_read_request_size="string",
        max_write_buffer_size="string",
        follow_index_pattern="string",
        max_outstanding_read_requests=float(0),
        max_outstanding_write_requests=float(0),
        max_read_request_operation_count=float(0),
        active=False,
        max_retry_delay="string",
        max_write_buffer_count=float(0),
        leader_index_exclusion_patterns=["string"],
        max_write_request_operation_count=float(0),
        max_write_request_size="string",
        name="string",
        read_poll_timeout="string",
        elasticsearch_connections=[{
            "api_key": "string",
            "bearer_token": "string",
            "ca_data": "string",
            "ca_file": "string",
            "ca_fingerprint": "string",
            "cert_data": "string",
            "cert_file": "string",
            "endpoints": ["string"],
            "es_client_authentication": "string",
            "headers": {
                "string": "string",
            },
            "insecure": False,
            "key_data": "string",
            "key_file": "string",
            "password": "string",
            "username": "string",
        }],
        settings_raw="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const elasticsearchCcrAutoFollowPatternResource = new elasticstack.ElasticsearchCcrAutoFollowPattern("elasticsearchCcrAutoFollowPatternResource", {
        leaderIndexPatterns: ["string"],
        remoteCluster: "string",
        maxReadRequestSize: "string",
        maxWriteBufferSize: "string",
        followIndexPattern: "string",
        maxOutstandingReadRequests: 0,
        maxOutstandingWriteRequests: 0,
        maxReadRequestOperationCount: 0,
        active: false,
        maxRetryDelay: "string",
        maxWriteBufferCount: 0,
        leaderIndexExclusionPatterns: ["string"],
        maxWriteRequestOperationCount: 0,
        maxWriteRequestSize: "string",
        name: "string",
        readPollTimeout: "string",
        elasticsearchConnections: [{
            apiKey: "string",
            bearerToken: "string",
            caData: "string",
            caFile: "string",
            caFingerprint: "string",
            certData: "string",
            certFile: "string",
            endpoints: ["string"],
            esClientAuthentication: "string",
            headers: {
                string: "string",
            },
            insecure: false,
            keyData: "string",
            keyFile: "string",
            password: "string",
            username: "string",
        }],
        settingsRaw: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: elasticstack:ElasticsearchCcrAutoFollowPattern
    properties:
        active: false
        elasticsearchConnections:
            - apiKey: string
              bearerToken: string
              caData: string
              caFile: string
              caFingerprint: string
              certData: string
              certFile: string
              endpoints:
                - string
              esClientAuthentication: string
              headers:
                string: string
              insecure: false
              keyData: string
              keyFile: string
              password: string
              username: string
        followIndexPattern: string
        leaderIndexExclusionPatterns:
            - string
        leaderIndexPatterns:
            - string
        maxOutstandingReadRequests: 0
        maxOutstandingWriteRequests: 0
        maxReadRequestOperationCount: 0
        maxReadRequestSize: string
        maxRetryDelay: string
        maxWriteBufferCount: 0
        maxWriteBufferSize: string
        maxWriteRequestOperationCount: 0
        maxWriteRequestSize: string
        name: string
        readPollTimeout: string
        remoteCluster: string
        settingsRaw: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

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

    LeaderIndexPatterns List<string>
    One or more simple index patterns to match against indices in the remote cluster.
    RemoteCluster string
    Remote cluster alias containing leader indices to match.
    Active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    ElasticsearchConnections List<ElasticsearchCcrAutoFollowPatternElasticsearchConnection>
    Elasticsearch connection configuration block.
    FollowIndexPattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    LeaderIndexExclusionPatterns List<string>
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    MaxOutstandingReadRequests double
    Maximum number of outstanding read requests from the remote cluster.
    MaxOutstandingWriteRequests double
    Maximum number of outstanding write requests on the follower.
    MaxReadRequestOperationCount double
    Maximum number of operations to pull per read from the remote cluster.
    MaxReadRequestSize string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    MaxRetryDelay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    MaxWriteBufferCount double
    Maximum number of operations queued for writing.
    MaxWriteBufferSize string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    MaxWriteRequestOperationCount double
    Maximum number of operations per bulk write request on the follower.
    MaxWriteRequestSize string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    Name string
    Name of the auto-follow pattern.
    ReadPollTimeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    SettingsRaw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    Timeouts ElasticsearchCcrAutoFollowPatternTimeouts
    LeaderIndexPatterns []string
    One or more simple index patterns to match against indices in the remote cluster.
    RemoteCluster string
    Remote cluster alias containing leader indices to match.
    Active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    ElasticsearchConnections []ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs
    Elasticsearch connection configuration block.
    FollowIndexPattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    LeaderIndexExclusionPatterns []string
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    MaxOutstandingReadRequests float64
    Maximum number of outstanding read requests from the remote cluster.
    MaxOutstandingWriteRequests float64
    Maximum number of outstanding write requests on the follower.
    MaxReadRequestOperationCount float64
    Maximum number of operations to pull per read from the remote cluster.
    MaxReadRequestSize string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    MaxRetryDelay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    MaxWriteBufferCount float64
    Maximum number of operations queued for writing.
    MaxWriteBufferSize string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    MaxWriteRequestOperationCount float64
    Maximum number of operations per bulk write request on the follower.
    MaxWriteRequestSize string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    Name string
    Name of the auto-follow pattern.
    ReadPollTimeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    SettingsRaw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    Timeouts ElasticsearchCcrAutoFollowPatternTimeoutsArgs
    leader_index_patterns list(string)
    One or more simple index patterns to match against indices in the remote cluster.
    remote_cluster string
    Remote cluster alias containing leader indices to match.
    active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearch_connections list(object)
    Elasticsearch connection configuration block.
    follow_index_pattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leader_index_exclusion_patterns list(string)
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    max_outstanding_read_requests number
    Maximum number of outstanding read requests from the remote cluster.
    max_outstanding_write_requests number
    Maximum number of outstanding write requests on the follower.
    max_read_request_operation_count number
    Maximum number of operations to pull per read from the remote cluster.
    max_read_request_size string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    max_retry_delay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    max_write_buffer_count number
    Maximum number of operations queued for writing.
    max_write_buffer_size string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    max_write_request_operation_count number
    Maximum number of operations per bulk write request on the follower.
    max_write_request_size string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name string
    Name of the auto-follow pattern.
    read_poll_timeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    settings_raw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts object
    leaderIndexPatterns List<String>
    One or more simple index patterns to match against indices in the remote cluster.
    remoteCluster String
    Remote cluster alias containing leader indices to match.
    active Boolean
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearchConnections List<ElasticsearchCcrAutoFollowPatternElasticsearchConnection>
    Elasticsearch connection configuration block.
    followIndexPattern String
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leaderIndexExclusionPatterns List<String>
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    maxOutstandingReadRequests Double
    Maximum number of outstanding read requests from the remote cluster.
    maxOutstandingWriteRequests Double
    Maximum number of outstanding write requests on the follower.
    maxReadRequestOperationCount Double
    Maximum number of operations to pull per read from the remote cluster.
    maxReadRequestSize String
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    maxRetryDelay String
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    maxWriteBufferCount Double
    Maximum number of operations queued for writing.
    maxWriteBufferSize String
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    maxWriteRequestOperationCount Double
    Maximum number of operations per bulk write request on the follower.
    maxWriteRequestSize String
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name String
    Name of the auto-follow pattern.
    readPollTimeout String
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    settingsRaw String
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts ElasticsearchCcrAutoFollowPatternTimeouts
    leaderIndexPatterns string[]
    One or more simple index patterns to match against indices in the remote cluster.
    remoteCluster string
    Remote cluster alias containing leader indices to match.
    active boolean
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearchConnections ElasticsearchCcrAutoFollowPatternElasticsearchConnection[]
    Elasticsearch connection configuration block.
    followIndexPattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leaderIndexExclusionPatterns string[]
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    maxOutstandingReadRequests number
    Maximum number of outstanding read requests from the remote cluster.
    maxOutstandingWriteRequests number
    Maximum number of outstanding write requests on the follower.
    maxReadRequestOperationCount number
    Maximum number of operations to pull per read from the remote cluster.
    maxReadRequestSize string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    maxRetryDelay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    maxWriteBufferCount number
    Maximum number of operations queued for writing.
    maxWriteBufferSize string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    maxWriteRequestOperationCount number
    Maximum number of operations per bulk write request on the follower.
    maxWriteRequestSize string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name string
    Name of the auto-follow pattern.
    readPollTimeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    settingsRaw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts ElasticsearchCcrAutoFollowPatternTimeouts
    leader_index_patterns Sequence[str]
    One or more simple index patterns to match against indices in the remote cluster.
    remote_cluster str
    Remote cluster alias containing leader indices to match.
    active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearch_connections Sequence[ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs]
    Elasticsearch connection configuration block.
    follow_index_pattern str
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leader_index_exclusion_patterns Sequence[str]
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    max_outstanding_read_requests float
    Maximum number of outstanding read requests from the remote cluster.
    max_outstanding_write_requests float
    Maximum number of outstanding write requests on the follower.
    max_read_request_operation_count float
    Maximum number of operations to pull per read from the remote cluster.
    max_read_request_size str
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    max_retry_delay str
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    max_write_buffer_count float
    Maximum number of operations queued for writing.
    max_write_buffer_size str
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    max_write_request_operation_count float
    Maximum number of operations per bulk write request on the follower.
    max_write_request_size str
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name str
    Name of the auto-follow pattern.
    read_poll_timeout str
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    settings_raw str
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts ElasticsearchCcrAutoFollowPatternTimeoutsArgs
    leaderIndexPatterns List<String>
    One or more simple index patterns to match against indices in the remote cluster.
    remoteCluster String
    Remote cluster alias containing leader indices to match.
    active Boolean
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearchConnections List<Property Map>
    Elasticsearch connection configuration block.
    followIndexPattern String
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leaderIndexExclusionPatterns List<String>
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    maxOutstandingReadRequests Number
    Maximum number of outstanding read requests from the remote cluster.
    maxOutstandingWriteRequests Number
    Maximum number of outstanding write requests on the follower.
    maxReadRequestOperationCount Number
    Maximum number of operations to pull per read from the remote cluster.
    maxReadRequestSize String
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    maxRetryDelay String
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    maxWriteBufferCount Number
    Maximum number of operations queued for writing.
    maxWriteBufferSize String
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    maxWriteRequestOperationCount Number
    Maximum number of operations per bulk write request on the follower.
    maxWriteRequestSize String
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name String
    Name of the auto-follow pattern.
    readPollTimeout String
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    settingsRaw String
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ElasticsearchCcrAutoFollowPattern 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 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 ElasticsearchCcrAutoFollowPattern Resource

    Get an existing ElasticsearchCcrAutoFollowPattern 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?: ElasticsearchCcrAutoFollowPatternState, opts?: CustomResourceOptions): ElasticsearchCcrAutoFollowPattern
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            active: Optional[bool] = None,
            elasticsearch_connections: Optional[Sequence[ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs]] = None,
            follow_index_pattern: Optional[str] = None,
            leader_index_exclusion_patterns: Optional[Sequence[str]] = None,
            leader_index_patterns: Optional[Sequence[str]] = None,
            max_outstanding_read_requests: Optional[float] = None,
            max_outstanding_write_requests: Optional[float] = None,
            max_read_request_operation_count: Optional[float] = None,
            max_read_request_size: Optional[str] = None,
            max_retry_delay: Optional[str] = None,
            max_write_buffer_count: Optional[float] = None,
            max_write_buffer_size: Optional[str] = None,
            max_write_request_operation_count: Optional[float] = None,
            max_write_request_size: Optional[str] = None,
            name: Optional[str] = None,
            read_poll_timeout: Optional[str] = None,
            remote_cluster: Optional[str] = None,
            settings_raw: Optional[str] = None,
            timeouts: Optional[ElasticsearchCcrAutoFollowPatternTimeoutsArgs] = None) -> ElasticsearchCcrAutoFollowPattern
    func GetElasticsearchCcrAutoFollowPattern(ctx *Context, name string, id IDInput, state *ElasticsearchCcrAutoFollowPatternState, opts ...ResourceOption) (*ElasticsearchCcrAutoFollowPattern, error)
    public static ElasticsearchCcrAutoFollowPattern Get(string name, Input<string> id, ElasticsearchCcrAutoFollowPatternState? state, CustomResourceOptions? opts = null)
    public static ElasticsearchCcrAutoFollowPattern get(String name, Output<String> id, ElasticsearchCcrAutoFollowPatternState state, CustomResourceOptions options)
    resources:  _:    type: elasticstack:ElasticsearchCcrAutoFollowPattern    get:      id: ${id}
    import {
      to = elasticstack_elasticsearch_ccr_auto_follow_pattern.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:
    Active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    ElasticsearchConnections List<ElasticsearchCcrAutoFollowPatternElasticsearchConnection>
    Elasticsearch connection configuration block.
    FollowIndexPattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    LeaderIndexExclusionPatterns List<string>
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    LeaderIndexPatterns List<string>
    One or more simple index patterns to match against indices in the remote cluster.
    MaxOutstandingReadRequests double
    Maximum number of outstanding read requests from the remote cluster.
    MaxOutstandingWriteRequests double
    Maximum number of outstanding write requests on the follower.
    MaxReadRequestOperationCount double
    Maximum number of operations to pull per read from the remote cluster.
    MaxReadRequestSize string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    MaxRetryDelay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    MaxWriteBufferCount double
    Maximum number of operations queued for writing.
    MaxWriteBufferSize string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    MaxWriteRequestOperationCount double
    Maximum number of operations per bulk write request on the follower.
    MaxWriteRequestSize string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    Name string
    Name of the auto-follow pattern.
    ReadPollTimeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    RemoteCluster string
    Remote cluster alias containing leader indices to match.
    SettingsRaw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    Timeouts ElasticsearchCcrAutoFollowPatternTimeouts
    Active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    ElasticsearchConnections []ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs
    Elasticsearch connection configuration block.
    FollowIndexPattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    LeaderIndexExclusionPatterns []string
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    LeaderIndexPatterns []string
    One or more simple index patterns to match against indices in the remote cluster.
    MaxOutstandingReadRequests float64
    Maximum number of outstanding read requests from the remote cluster.
    MaxOutstandingWriteRequests float64
    Maximum number of outstanding write requests on the follower.
    MaxReadRequestOperationCount float64
    Maximum number of operations to pull per read from the remote cluster.
    MaxReadRequestSize string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    MaxRetryDelay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    MaxWriteBufferCount float64
    Maximum number of operations queued for writing.
    MaxWriteBufferSize string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    MaxWriteRequestOperationCount float64
    Maximum number of operations per bulk write request on the follower.
    MaxWriteRequestSize string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    Name string
    Name of the auto-follow pattern.
    ReadPollTimeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    RemoteCluster string
    Remote cluster alias containing leader indices to match.
    SettingsRaw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    Timeouts ElasticsearchCcrAutoFollowPatternTimeoutsArgs
    active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearch_connections list(object)
    Elasticsearch connection configuration block.
    follow_index_pattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leader_index_exclusion_patterns list(string)
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    leader_index_patterns list(string)
    One or more simple index patterns to match against indices in the remote cluster.
    max_outstanding_read_requests number
    Maximum number of outstanding read requests from the remote cluster.
    max_outstanding_write_requests number
    Maximum number of outstanding write requests on the follower.
    max_read_request_operation_count number
    Maximum number of operations to pull per read from the remote cluster.
    max_read_request_size string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    max_retry_delay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    max_write_buffer_count number
    Maximum number of operations queued for writing.
    max_write_buffer_size string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    max_write_request_operation_count number
    Maximum number of operations per bulk write request on the follower.
    max_write_request_size string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name string
    Name of the auto-follow pattern.
    read_poll_timeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    remote_cluster string
    Remote cluster alias containing leader indices to match.
    settings_raw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts object
    active Boolean
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearchConnections List<ElasticsearchCcrAutoFollowPatternElasticsearchConnection>
    Elasticsearch connection configuration block.
    followIndexPattern String
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leaderIndexExclusionPatterns List<String>
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    leaderIndexPatterns List<String>
    One or more simple index patterns to match against indices in the remote cluster.
    maxOutstandingReadRequests Double
    Maximum number of outstanding read requests from the remote cluster.
    maxOutstandingWriteRequests Double
    Maximum number of outstanding write requests on the follower.
    maxReadRequestOperationCount Double
    Maximum number of operations to pull per read from the remote cluster.
    maxReadRequestSize String
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    maxRetryDelay String
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    maxWriteBufferCount Double
    Maximum number of operations queued for writing.
    maxWriteBufferSize String
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    maxWriteRequestOperationCount Double
    Maximum number of operations per bulk write request on the follower.
    maxWriteRequestSize String
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name String
    Name of the auto-follow pattern.
    readPollTimeout String
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    remoteCluster String
    Remote cluster alias containing leader indices to match.
    settingsRaw String
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts ElasticsearchCcrAutoFollowPatternTimeouts
    active boolean
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearchConnections ElasticsearchCcrAutoFollowPatternElasticsearchConnection[]
    Elasticsearch connection configuration block.
    followIndexPattern string
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leaderIndexExclusionPatterns string[]
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    leaderIndexPatterns string[]
    One or more simple index patterns to match against indices in the remote cluster.
    maxOutstandingReadRequests number
    Maximum number of outstanding read requests from the remote cluster.
    maxOutstandingWriteRequests number
    Maximum number of outstanding write requests on the follower.
    maxReadRequestOperationCount number
    Maximum number of operations to pull per read from the remote cluster.
    maxReadRequestSize string
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    maxRetryDelay string
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    maxWriteBufferCount number
    Maximum number of operations queued for writing.
    maxWriteBufferSize string
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    maxWriteRequestOperationCount number
    Maximum number of operations per bulk write request on the follower.
    maxWriteRequestSize string
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name string
    Name of the auto-follow pattern.
    readPollTimeout string
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    remoteCluster string
    Remote cluster alias containing leader indices to match.
    settingsRaw string
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts ElasticsearchCcrAutoFollowPatternTimeouts
    active bool
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearch_connections Sequence[ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs]
    Elasticsearch connection configuration block.
    follow_index_pattern str
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leader_index_exclusion_patterns Sequence[str]
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    leader_index_patterns Sequence[str]
    One or more simple index patterns to match against indices in the remote cluster.
    max_outstanding_read_requests float
    Maximum number of outstanding read requests from the remote cluster.
    max_outstanding_write_requests float
    Maximum number of outstanding write requests on the follower.
    max_read_request_operation_count float
    Maximum number of operations to pull per read from the remote cluster.
    max_read_request_size str
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    max_retry_delay str
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    max_write_buffer_count float
    Maximum number of operations queued for writing.
    max_write_buffer_size str
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    max_write_request_operation_count float
    Maximum number of operations per bulk write request on the follower.
    max_write_request_size str
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name str
    Name of the auto-follow pattern.
    read_poll_timeout str
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    remote_cluster str
    Remote cluster alias containing leader indices to match.
    settings_raw str
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts ElasticsearchCcrAutoFollowPatternTimeoutsArgs
    active Boolean
    Desired state of the auto-follow pattern. When false, the pattern is paused.
    elasticsearchConnections List<Property Map>
    Elasticsearch connection configuration block.
    followIndexPattern String
    Name template for follower indices; {{leader_index}} is substituted with the matched leader index name.
    leaderIndexExclusionPatterns List<String>
    Simple index patterns that exclude indices from being auto-followed even when they match leader_index_patterns.
    leaderIndexPatterns List<String>
    One or more simple index patterns to match against indices in the remote cluster.
    maxOutstandingReadRequests Number
    Maximum number of outstanding read requests from the remote cluster.
    maxOutstandingWriteRequests Number
    Maximum number of outstanding write requests on the follower.
    maxReadRequestOperationCount Number
    Maximum number of operations to pull per read from the remote cluster.
    maxReadRequestSize String
    Maximum size in bytes per read batch from the remote cluster (e.g. "100mb").
    maxRetryDelay String
    Maximum time to wait before retrying a failed operation (e.g. "10s").
    maxWriteBufferCount Number
    Maximum number of operations queued for writing.
    maxWriteBufferSize String
    Maximum total bytes of operations queued for writing (e.g. "100mb").
    maxWriteRequestOperationCount Number
    Maximum number of operations per bulk write request on the follower.
    maxWriteRequestSize String
    Maximum total bytes per bulk write request on the follower (e.g. "100mb").
    name String
    Name of the auto-follow pattern.
    readPollTimeout String
    Maximum time to wait for new operations on the remote cluster when synchronized (e.g. "10m").
    remoteCluster String
    Remote cluster alias containing leader indices to match.
    settingsRaw String
    JSON-encoded index settings to apply to auto-created follower indices. Write-only; not returned by the auto-follow API.
    timeouts Property Map

    Supporting Types

    ElasticsearchCcrAutoFollowPatternElasticsearchConnection, ElasticsearchCcrAutoFollowPatternElasticsearchConnectionArgs

    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
    CaFingerprint string
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    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
    Headers Dictionary<string, string>
    A list of headers to be sent with each request to Elasticsearch.
    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
    CaFingerprint string
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    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
    Headers map[string]string
    A list of headers to be sent with each request to Elasticsearch.
    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.
    api_key string
    API Key to use for authentication to Elasticsearch
    bearer_token string
    Bearer Token to use for authentication to Elasticsearch
    ca_data string
    PEM-encoded custom Certificate Authority certificate
    ca_file string
    Path to a custom Certificate Authority certificate
    ca_fingerprint string
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    cert_data string
    PEM encoded certificate for client auth
    cert_file string
    Path to a file containing the PEM encoded certificate for client auth
    endpoints list(string)
    es_client_authentication string
    ES Client Authentication field to be used with the JWT token
    headers map(string)
    A list of headers to be sent with each request to Elasticsearch.
    insecure bool
    Disable TLS certificate validation
    key_data string
    PEM encoded private key for client auth
    key_file 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
    caFingerprint String
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    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
    headers Map<String,String>
    A list of headers to be sent with each request to Elasticsearch.
    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
    caFingerprint string
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    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
    headers {[key: string]: string}
    A list of headers to be sent with each request to Elasticsearch.
    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
    ca_fingerprint str
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    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
    headers Mapping[str, str]
    A list of headers to be sent with each request to Elasticsearch.
    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
    caFingerprint String
    SHA-256 hex fingerprint (64 hexadecimal characters, no colons or separators) of the server TLS certificate used to pin the connection instead of a full CA chain
    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
    headers Map<String>
    A list of headers to be sent with each request to Elasticsearch.
    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.

    ElasticsearchCcrAutoFollowPatternTimeouts, ElasticsearchCcrAutoFollowPatternTimeoutsArgs

    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).
    Delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).
    Delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).
    delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).
    delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).
    delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).
    delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).
    delete 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). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
    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).

    Import

    The pulumi import command can be used, for example:

    $ pulumi import elasticstack:index/elasticsearchCcrAutoFollowPattern:ElasticsearchCcrAutoFollowPattern my_pattern <cluster_uuid>/<pattern_name>
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.16.3
    published on Thursday, Jul 23, 2026 by elastic

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial