published on Thursday, May 14, 2026 by elastic
published on Thursday, May 14, 2026 by elastic
Manages an Elasticsearch alias. See the alias documentation for more details.
Create ElasticsearchIndexAlias Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ElasticsearchIndexAlias(name: string, args?: ElasticsearchIndexAliasArgs, opts?: CustomResourceOptions);@overload
def ElasticsearchIndexAlias(resource_name: str,
args: Optional[ElasticsearchIndexAliasInitArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ElasticsearchIndexAlias(resource_name: str,
opts: Optional[ResourceOptions] = None,
elasticsearch_connections: Optional[Sequence[ElasticsearchIndexAliasElasticsearchConnectionArgs]] = None,
name: Optional[str] = None,
read_indices: Optional[Sequence[ElasticsearchIndexAliasReadIndexArgs]] = None,
write_index: Optional[ElasticsearchIndexAliasWriteIndexArgs] = None)func NewElasticsearchIndexAlias(ctx *Context, name string, args *ElasticsearchIndexAliasArgs, opts ...ResourceOption) (*ElasticsearchIndexAlias, error)public ElasticsearchIndexAlias(string name, ElasticsearchIndexAliasArgs? args = null, CustomResourceOptions? opts = null)
public ElasticsearchIndexAlias(String name, ElasticsearchIndexAliasArgs args)
public ElasticsearchIndexAlias(String name, ElasticsearchIndexAliasArgs args, CustomResourceOptions options)
type: elasticstack:ElasticsearchIndexAlias
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "elasticstack_elasticsearchindexalias" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ElasticsearchIndexAliasArgs
- 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 ElasticsearchIndexAliasInitArgs
- 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 ElasticsearchIndexAliasArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ElasticsearchIndexAliasArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ElasticsearchIndexAliasArgs
- 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 elasticsearchIndexAliasResource = new Elasticstack.ElasticsearchIndexAlias("elasticsearchIndexAliasResource", new()
{
ElasticsearchConnections = new[]
{
new Elasticstack.Inputs.ElasticsearchIndexAliasElasticsearchConnectionArgs
{
ApiKey = "string",
BearerToken = "string",
CaData = "string",
CaFile = "string",
CertData = "string",
CertFile = "string",
Endpoints = new[]
{
"string",
},
EsClientAuthentication = "string",
Headers =
{
{ "string", "string" },
},
Insecure = false,
KeyData = "string",
KeyFile = "string",
Password = "string",
Username = "string",
},
},
Name = "string",
ReadIndices = new[]
{
new Elasticstack.Inputs.ElasticsearchIndexAliasReadIndexArgs
{
Name = "string",
Filter = "string",
IndexRouting = "string",
IsHidden = false,
Routing = "string",
SearchRouting = "string",
},
},
WriteIndex = new Elasticstack.Inputs.ElasticsearchIndexAliasWriteIndexArgs
{
Name = "string",
Filter = "string",
IndexRouting = "string",
IsHidden = false,
Routing = "string",
SearchRouting = "string",
},
});
example, err := elasticstack.NewElasticsearchIndexAlias(ctx, "elasticsearchIndexAliasResource", &elasticstack.ElasticsearchIndexAliasArgs{
ElasticsearchConnections: elasticstack.ElasticsearchIndexAliasElasticsearchConnectionArray{
&elasticstack.ElasticsearchIndexAliasElasticsearchConnectionArgs{
ApiKey: pulumi.String("string"),
BearerToken: pulumi.String("string"),
CaData: pulumi.String("string"),
CaFile: 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"),
},
},
Name: pulumi.String("string"),
ReadIndices: elasticstack.ElasticsearchIndexAliasReadIndexArray{
&elasticstack.ElasticsearchIndexAliasReadIndexArgs{
Name: pulumi.String("string"),
Filter: pulumi.String("string"),
IndexRouting: pulumi.String("string"),
IsHidden: pulumi.Bool(false),
Routing: pulumi.String("string"),
SearchRouting: pulumi.String("string"),
},
},
WriteIndex: &elasticstack.ElasticsearchIndexAliasWriteIndexArgs{
Name: pulumi.String("string"),
Filter: pulumi.String("string"),
IndexRouting: pulumi.String("string"),
IsHidden: pulumi.Bool(false),
Routing: pulumi.String("string"),
SearchRouting: pulumi.String("string"),
},
})
resource "elasticstack_elasticsearchindexalias" "elasticsearchIndexAliasResource" {
elasticsearch_connections {
api_key = "string"
bearer_token = "string"
ca_data = "string"
ca_file = "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"
}
name = "string"
read_indices {
name = "string"
filter = "string"
index_routing = "string"
is_hidden = false
routing = "string"
search_routing = "string"
}
write_index = {
name = "string"
filter = "string"
index_routing = "string"
is_hidden = false
routing = "string"
search_routing = "string"
}
}
var elasticsearchIndexAliasResource = new ElasticsearchIndexAlias("elasticsearchIndexAliasResource", ElasticsearchIndexAliasArgs.builder()
.elasticsearchConnections(ElasticsearchIndexAliasElasticsearchConnectionArgs.builder()
.apiKey("string")
.bearerToken("string")
.caData("string")
.caFile("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())
.name("string")
.readIndices(ElasticsearchIndexAliasReadIndexArgs.builder()
.name("string")
.filter("string")
.indexRouting("string")
.isHidden(false)
.routing("string")
.searchRouting("string")
.build())
.writeIndex(ElasticsearchIndexAliasWriteIndexArgs.builder()
.name("string")
.filter("string")
.indexRouting("string")
.isHidden(false)
.routing("string")
.searchRouting("string")
.build())
.build());
elasticsearch_index_alias_resource = elasticstack.ElasticsearchIndexAlias("elasticsearchIndexAliasResource",
elasticsearch_connections=[{
"api_key": "string",
"bearer_token": "string",
"ca_data": "string",
"ca_file": "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",
}],
name="string",
read_indices=[{
"name": "string",
"filter": "string",
"index_routing": "string",
"is_hidden": False,
"routing": "string",
"search_routing": "string",
}],
write_index={
"name": "string",
"filter": "string",
"index_routing": "string",
"is_hidden": False,
"routing": "string",
"search_routing": "string",
})
const elasticsearchIndexAliasResource = new elasticstack.ElasticsearchIndexAlias("elasticsearchIndexAliasResource", {
elasticsearchConnections: [{
apiKey: "string",
bearerToken: "string",
caData: "string",
caFile: "string",
certData: "string",
certFile: "string",
endpoints: ["string"],
esClientAuthentication: "string",
headers: {
string: "string",
},
insecure: false,
keyData: "string",
keyFile: "string",
password: "string",
username: "string",
}],
name: "string",
readIndices: [{
name: "string",
filter: "string",
indexRouting: "string",
isHidden: false,
routing: "string",
searchRouting: "string",
}],
writeIndex: {
name: "string",
filter: "string",
indexRouting: "string",
isHidden: false,
routing: "string",
searchRouting: "string",
},
});
type: elasticstack:ElasticsearchIndexAlias
properties:
elasticsearchConnections:
- apiKey: string
bearerToken: string
caData: string
caFile: string
certData: string
certFile: string
endpoints:
- string
esClientAuthentication: string
headers:
string: string
insecure: false
keyData: string
keyFile: string
password: string
username: string
name: string
readIndices:
- filter: string
indexRouting: string
isHidden: false
name: string
routing: string
searchRouting: string
writeIndex:
filter: string
indexRouting: string
isHidden: false
name: string
routing: string
searchRouting: string
ElasticsearchIndexAlias 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 ElasticsearchIndexAlias resource accepts the following input properties:
- Elasticsearch
Connections List<ElasticsearchIndex Alias Elasticsearch Connection> - Elasticsearch connection configuration block.
- Name string
- The alias name.
- Read
Indices List<ElasticsearchIndex Alias Read Index> - Set of read indices for the alias.
- Write
Index ElasticsearchIndex Alias Write Index - The write index for the alias. Only one write index is allowed per alias.
- Elasticsearch
Connections []ElasticsearchIndex Alias Elasticsearch Connection Args - Elasticsearch connection configuration block.
- Name string
- The alias name.
- Read
Indices []ElasticsearchIndex Alias Read Index Args - Set of read indices for the alias.
- Write
Index ElasticsearchIndex Alias Write Index Args - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch_
connections list(object) - Elasticsearch connection configuration block.
- name string
- The alias name.
- read_
indices list(object) - Set of read indices for the alias.
- write_
index object - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch
Connections List<ElasticsearchIndex Alias Elasticsearch Connection> - Elasticsearch connection configuration block.
- name String
- The alias name.
- read
Indices List<ElasticsearchIndex Alias Read Index> - Set of read indices for the alias.
- write
Index ElasticsearchIndex Alias Write Index - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch
Connections ElasticsearchIndex Alias Elasticsearch Connection[] - Elasticsearch connection configuration block.
- name string
- The alias name.
- read
Indices ElasticsearchIndex Alias Read Index[] - Set of read indices for the alias.
- write
Index ElasticsearchIndex Alias Write Index - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch_
connections Sequence[ElasticsearchIndex Alias Elasticsearch Connection Args] - Elasticsearch connection configuration block.
- name str
- The alias name.
- read_
indices Sequence[ElasticsearchIndex Alias Read Index Args] - Set of read indices for the alias.
- write_
index ElasticsearchIndex Alias Write Index Args - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch
Connections List<Property Map> - Elasticsearch connection configuration block.
- name String
- The alias name.
- read
Indices List<Property Map> - Set of read indices for the alias.
- write
Index Property Map - The write index for the alias. Only one write index is allowed per alias.
Outputs
All input properties are implicitly available as output properties. Additionally, the ElasticsearchIndexAlias 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 ElasticsearchIndexAlias Resource
Get an existing ElasticsearchIndexAlias 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?: ElasticsearchIndexAliasState, opts?: CustomResourceOptions): ElasticsearchIndexAlias@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
elasticsearch_connections: Optional[Sequence[ElasticsearchIndexAliasElasticsearchConnectionArgs]] = None,
name: Optional[str] = None,
read_indices: Optional[Sequence[ElasticsearchIndexAliasReadIndexArgs]] = None,
write_index: Optional[ElasticsearchIndexAliasWriteIndexArgs] = None) -> ElasticsearchIndexAliasfunc GetElasticsearchIndexAlias(ctx *Context, name string, id IDInput, state *ElasticsearchIndexAliasState, opts ...ResourceOption) (*ElasticsearchIndexAlias, error)public static ElasticsearchIndexAlias Get(string name, Input<string> id, ElasticsearchIndexAliasState? state, CustomResourceOptions? opts = null)public static ElasticsearchIndexAlias get(String name, Output<String> id, ElasticsearchIndexAliasState state, CustomResourceOptions options)resources: _: type: elasticstack:ElasticsearchIndexAlias get: id: ${id}import {
to = elasticstack_elasticsearchindexalias.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.
- Elasticsearch
Connections List<ElasticsearchIndex Alias Elasticsearch Connection> - Elasticsearch connection configuration block.
- Name string
- The alias name.
- Read
Indices List<ElasticsearchIndex Alias Read Index> - Set of read indices for the alias.
- Write
Index ElasticsearchIndex Alias Write Index - The write index for the alias. Only one write index is allowed per alias.
- Elasticsearch
Connections []ElasticsearchIndex Alias Elasticsearch Connection Args - Elasticsearch connection configuration block.
- Name string
- The alias name.
- Read
Indices []ElasticsearchIndex Alias Read Index Args - Set of read indices for the alias.
- Write
Index ElasticsearchIndex Alias Write Index Args - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch_
connections list(object) - Elasticsearch connection configuration block.
- name string
- The alias name.
- read_
indices list(object) - Set of read indices for the alias.
- write_
index object - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch
Connections List<ElasticsearchIndex Alias Elasticsearch Connection> - Elasticsearch connection configuration block.
- name String
- The alias name.
- read
Indices List<ElasticsearchIndex Alias Read Index> - Set of read indices for the alias.
- write
Index ElasticsearchIndex Alias Write Index - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch
Connections ElasticsearchIndex Alias Elasticsearch Connection[] - Elasticsearch connection configuration block.
- name string
- The alias name.
- read
Indices ElasticsearchIndex Alias Read Index[] - Set of read indices for the alias.
- write
Index ElasticsearchIndex Alias Write Index - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch_
connections Sequence[ElasticsearchIndex Alias Elasticsearch Connection Args] - Elasticsearch connection configuration block.
- name str
- The alias name.
- read_
indices Sequence[ElasticsearchIndex Alias Read Index Args] - Set of read indices for the alias.
- write_
index ElasticsearchIndex Alias Write Index Args - The write index for the alias. Only one write index is allowed per alias.
- elasticsearch
Connections List<Property Map> - Elasticsearch connection configuration block.
- name String
- The alias name.
- read
Indices List<Property Map> - Set of read indices for the alias.
- write
Index Property Map - The write index for the alias. Only one write index is allowed per alias.
Supporting Types
ElasticsearchIndexAliasElasticsearchConnection, ElasticsearchIndexAliasElasticsearchConnectionArgs
- 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
- 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 stringAuthentication - 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
- 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.
- 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
- 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 []string
- Es
Client stringAuthentication - 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
- 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.
- 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
- 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_ stringauthentication - 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.
- 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
- 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 StringAuthentication - 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
- 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.
- 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
- 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 string[]
- es
Client stringAuthentication - 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
- 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.
- 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_ strauthentication - 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.
- 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
- 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 StringAuthentication - 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
- 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.
ElasticsearchIndexAliasReadIndex, ElasticsearchIndexAliasReadIndexArgs
- Name string
- Name of the read index.
- Filter string
- Query used to limit documents the alias can access.
- Index
Routing string - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- Routing string
- Value used to route indexing and search operations to a specific shard.
- Search
Routing string - Value used to route search operations to a specific shard.
- Name string
- Name of the read index.
- Filter string
- Query used to limit documents the alias can access.
- Index
Routing string - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- Routing string
- Value used to route indexing and search operations to a specific shard.
- Search
Routing string - Value used to route search operations to a specific shard.
- name string
- Name of the read index.
- filter string
- Query used to limit documents the alias can access.
- index_
routing string - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- routing string
- Value used to route indexing and search operations to a specific shard.
- search_
routing string - Value used to route search operations to a specific shard.
- name String
- Name of the read index.
- filter String
- Query used to limit documents the alias can access.
- index
Routing String - Value used to route indexing operations to a specific shard.
- Boolean
- If true, the alias is hidden.
- routing String
- Value used to route indexing and search operations to a specific shard.
- search
Routing String - Value used to route search operations to a specific shard.
- name string
- Name of the read index.
- filter string
- Query used to limit documents the alias can access.
- index
Routing string - Value used to route indexing operations to a specific shard.
- boolean
- If true, the alias is hidden.
- routing string
- Value used to route indexing and search operations to a specific shard.
- search
Routing string - Value used to route search operations to a specific shard.
- name str
- Name of the read index.
- filter str
- Query used to limit documents the alias can access.
- index_
routing str - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- routing str
- Value used to route indexing and search operations to a specific shard.
- search_
routing str - Value used to route search operations to a specific shard.
- name String
- Name of the read index.
- filter String
- Query used to limit documents the alias can access.
- index
Routing String - Value used to route indexing operations to a specific shard.
- Boolean
- If true, the alias is hidden.
- routing String
- Value used to route indexing and search operations to a specific shard.
- search
Routing String - Value used to route search operations to a specific shard.
ElasticsearchIndexAliasWriteIndex, ElasticsearchIndexAliasWriteIndexArgs
- Name string
- Name of the write index.
- Filter string
- Query used to limit documents the alias can access.
- Index
Routing string - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- Routing string
- Value used to route indexing and search operations to a specific shard.
- Search
Routing string - Value used to route search operations to a specific shard.
- Name string
- Name of the write index.
- Filter string
- Query used to limit documents the alias can access.
- Index
Routing string - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- Routing string
- Value used to route indexing and search operations to a specific shard.
- Search
Routing string - Value used to route search operations to a specific shard.
- name string
- Name of the write index.
- filter string
- Query used to limit documents the alias can access.
- index_
routing string - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- routing string
- Value used to route indexing and search operations to a specific shard.
- search_
routing string - Value used to route search operations to a specific shard.
- name String
- Name of the write index.
- filter String
- Query used to limit documents the alias can access.
- index
Routing String - Value used to route indexing operations to a specific shard.
- Boolean
- If true, the alias is hidden.
- routing String
- Value used to route indexing and search operations to a specific shard.
- search
Routing String - Value used to route search operations to a specific shard.
- name string
- Name of the write index.
- filter string
- Query used to limit documents the alias can access.
- index
Routing string - Value used to route indexing operations to a specific shard.
- boolean
- If true, the alias is hidden.
- routing string
- Value used to route indexing and search operations to a specific shard.
- search
Routing string - Value used to route search operations to a specific shard.
- name str
- Name of the write index.
- filter str
- Query used to limit documents the alias can access.
- index_
routing str - Value used to route indexing operations to a specific shard.
- bool
- If true, the alias is hidden.
- routing str
- Value used to route indexing and search operations to a specific shard.
- search_
routing str - Value used to route search operations to a specific shard.
- name String
- Name of the write index.
- filter String
- Query used to limit documents the alias can access.
- index
Routing String - Value used to route indexing operations to a specific shard.
- Boolean
- If true, the alias is hidden.
- routing String
- Value used to route indexing and search operations to a specific shard.
- search
Routing String - Value used to route search operations to a specific shard.
Package Details
- Repository
- elasticstack elastic/terraform-provider-elasticstack
- License
- Notes
- This Pulumi package is based on the
elasticstackTerraform Provider.
published on Thursday, May 14, 2026 by elastic
