opensearch

OpenSearch

Analytics & IoTAWS
General

General information about the service.

Description

Amazon OpenSearch Service makes it easy to deploy and manage OpenSearch clusters.

Service Namespace

AWS::OpenSearchService::Domain

ARN Pattern

arn:aws:es:{region}:{account}:domain/{domain-name}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

opensearch-

Length

3-28

Valid Characters

Lowercase letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_opensearch_domain" "main" {
2 domain_name = "opensearch-${var.environment}"
3 engine_version = "OpenSearch_2.5"
4 cluster_config {
5 instance_type = "t3.small.search"
6 }
7 ebs_options {
8 ebs_enabled = true
9 volume_size = 10
10 }
11}
Utilities

Utilities to support app deployment or configuration.