published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
The Opensearch resource allows the creation and management of Aiven Opensearch services.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var os1 = new Aiven.OpenSearch("os1", new()
{
Project = data.Aiven_project.Pr1.Project,
CloudName = "google-europe-west1",
Plan = "startup-4",
ServiceName = "my-os1",
MaintenanceWindowDow = "monday",
MaintenanceWindowTime = "10:00:00",
OpensearchUserConfig = new Aiven.Inputs.OpenSearchOpensearchUserConfigArgs
{
OpensearchVersion = "1",
OpensearchDashboards = new Aiven.Inputs.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs
{
Enabled = "true",
OpensearchRequestTimeout = "30000",
},
PublicAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPublicAccessArgs
{
Opensearch = "true",
OpensearchDashboards = "true",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v5/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewOpenSearch(ctx, "os1", &aiven.OpenSearchArgs{
Project: pulumi.Any(data.Aiven_project.Pr1.Project),
CloudName: pulumi.String("google-europe-west1"),
Plan: pulumi.String("startup-4"),
ServiceName: pulumi.String("my-os1"),
MaintenanceWindowDow: pulumi.String("monday"),
MaintenanceWindowTime: pulumi.String("10:00:00"),
OpensearchUserConfig: &aiven.OpenSearchOpensearchUserConfigArgs{
OpensearchVersion: pulumi.String("1"),
OpensearchDashboards: &aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs{
Enabled: pulumi.String("true"),
OpensearchRequestTimeout: pulumi.String("30000"),
},
PublicAccess: &aiven.OpenSearchOpensearchUserConfigPublicAccessArgs{
Opensearch: pulumi.String("true"),
OpensearchDashboards: pulumi.String("true"),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.OpenSearch;
import com.pulumi.aiven.OpenSearchArgs;
import com.pulumi.aiven.inputs.OpenSearchOpensearchUserConfigArgs;
import com.pulumi.aiven.inputs.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs;
import com.pulumi.aiven.inputs.OpenSearchOpensearchUserConfigPublicAccessArgs;
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 os1 = new OpenSearch("os1", OpenSearchArgs.builder()
.project(data.aiven_project().pr1().project())
.cloudName("google-europe-west1")
.plan("startup-4")
.serviceName("my-os1")
.maintenanceWindowDow("monday")
.maintenanceWindowTime("10:00:00")
.opensearchUserConfig(OpenSearchOpensearchUserConfigArgs.builder()
.opensearchVersion(1)
.opensearchDashboards(OpenSearchOpensearchUserConfigOpensearchDashboardsArgs.builder()
.enabled(true)
.opensearchRequestTimeout(30000)
.build())
.publicAccess(OpenSearchOpensearchUserConfigPublicAccessArgs.builder()
.opensearch(true)
.opensearchDashboards(true)
.build())
.build())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const os1 = new aiven.OpenSearch("os1", {
project: data.aiven_project.pr1.project,
cloudName: "google-europe-west1",
plan: "startup-4",
serviceName: "my-os1",
maintenanceWindowDow: "monday",
maintenanceWindowTime: "10:00:00",
opensearchUserConfig: {
opensearchVersion: "1",
opensearchDashboards: {
enabled: "true",
opensearchRequestTimeout: "30000",
},
publicAccess: {
opensearch: "true",
opensearchDashboards: "true",
},
},
});
import pulumi
import pulumi_aiven as aiven
os1 = aiven.OpenSearch("os1",
project=data["aiven_project"]["pr1"]["project"],
cloud_name="google-europe-west1",
plan="startup-4",
service_name="my-os1",
maintenance_window_dow="monday",
maintenance_window_time="10:00:00",
opensearch_user_config=aiven.OpenSearchOpensearchUserConfigArgs(
opensearch_version="1",
opensearch_dashboards=aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs(
enabled="true",
opensearch_request_timeout="30000",
),
public_access=aiven.OpenSearchOpensearchUserConfigPublicAccessArgs(
opensearch="true",
opensearch_dashboards="true",
),
))
resources:
os1:
type: aiven:OpenSearch
properties:
project: ${data.aiven_project.pr1.project}
cloudName: google-europe-west1
plan: startup-4
serviceName: my-os1
maintenanceWindowDow: monday
maintenanceWindowTime: 10:00:00
opensearchUserConfig:
opensearchVersion: 1
opensearchDashboards:
enabled: true
opensearchRequestTimeout: 30000
publicAccess:
opensearch: true
opensearchDashboards: true
Create OpenSearch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenSearch(name: string, args: OpenSearchArgs, opts?: CustomResourceOptions);@overload
def OpenSearch(resource_name: str,
args: OpenSearchArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenSearch(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
plan: Optional[str] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
opensearch_user_config: Optional[OpenSearchOpensearchUserConfigArgs] = None,
additional_disk_space: Optional[str] = None,
disk_space: Optional[str] = None,
project_vpc_id: Optional[str] = None,
service_integrations: Optional[Sequence[OpenSearchServiceIntegrationArgs]] = None,
cloud_name: Optional[str] = None,
static_ips: Optional[Sequence[str]] = None,
tags: Optional[Sequence[OpenSearchTagArgs]] = None,
termination_protection: Optional[bool] = None)func NewOpenSearch(ctx *Context, name string, args OpenSearchArgs, opts ...ResourceOption) (*OpenSearch, error)public OpenSearch(string name, OpenSearchArgs args, CustomResourceOptions? opts = null)
public OpenSearch(String name, OpenSearchArgs args)
public OpenSearch(String name, OpenSearchArgs args, CustomResourceOptions options)
type: aiven:OpenSearch
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OpenSearchArgs
- 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 OpenSearchArgs
- 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 OpenSearchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenSearchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenSearchArgs
- 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 openSearchResource = new Aiven.OpenSearch("openSearchResource", new()
{
Project = "string",
ServiceName = "string",
Plan = "string",
MaintenanceWindowDow = "string",
MaintenanceWindowTime = "string",
OpensearchUserConfig = new Aiven.Inputs.OpenSearchOpensearchUserConfigArgs
{
AdditionalBackupRegions = "string",
CustomDomain = "string",
IndexPatterns = new[]
{
new Aiven.Inputs.OpenSearchOpensearchUserConfigIndexPatternArgs
{
MaxIndexCount = "string",
Pattern = "string",
SortingAlgorithm = "string",
},
},
IndexTemplate = new Aiven.Inputs.OpenSearchOpensearchUserConfigIndexTemplateArgs
{
MappingNestedObjectsLimit = "string",
NumberOfReplicas = "string",
NumberOfShards = "string",
},
IpFilterObjects = new[]
{
new Aiven.Inputs.OpenSearchOpensearchUserConfigIpFilterObjectArgs
{
Description = "string",
Network = "string",
},
},
IpFilters = new[]
{
"string",
},
KeepIndexRefreshInterval = "string",
Opensearch = new Aiven.Inputs.OpenSearchOpensearchUserConfigOpensearchArgs
{
ActionAutoCreateIndexEnabled = "string",
ActionDestructiveRequiresName = "string",
ClusterMaxShardsPerNode = "string",
ClusterRoutingAllocationNodeConcurrentRecoveries = "string",
EmailSenderName = "string",
EmailSenderPassword = "string",
EmailSenderUsername = "string",
HttpMaxContentLength = "string",
HttpMaxHeaderSize = "string",
HttpMaxInitialLineLength = "string",
IndicesFielddataCacheSize = "string",
IndicesMemoryIndexBufferSize = "string",
IndicesQueriesCacheSize = "string",
IndicesQueryBoolMaxClauseCount = "string",
IndicesRecoveryMaxBytesPerSec = "string",
IndicesRecoveryMaxConcurrentFileChunks = "string",
OverrideMainResponseVersion = "string",
ReindexRemoteWhitelists = new[]
{
"string",
},
ScriptMaxCompilationsRate = "string",
SearchMaxBuckets = "string",
ThreadPoolAnalyzeQueueSize = "string",
ThreadPoolAnalyzeSize = "string",
ThreadPoolForceMergeSize = "string",
ThreadPoolGetQueueSize = "string",
ThreadPoolGetSize = "string",
ThreadPoolSearchQueueSize = "string",
ThreadPoolSearchSize = "string",
ThreadPoolSearchThrottledQueueSize = "string",
ThreadPoolSearchThrottledSize = "string",
ThreadPoolWriteQueueSize = "string",
ThreadPoolWriteSize = "string",
},
OpensearchDashboards = new Aiven.Inputs.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs
{
Enabled = "string",
MaxOldSpaceSize = "string",
OpensearchRequestTimeout = "string",
},
OpensearchVersion = "string",
PrivateAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPrivateAccessArgs
{
Opensearch = "string",
OpensearchDashboards = "string",
Prometheus = "string",
},
PrivatelinkAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPrivatelinkAccessArgs
{
Opensearch = "string",
OpensearchDashboards = "string",
Prometheus = "string",
},
ProjectToForkFrom = "string",
PublicAccess = new Aiven.Inputs.OpenSearchOpensearchUserConfigPublicAccessArgs
{
Opensearch = "string",
OpensearchDashboards = "string",
Prometheus = "string",
},
RecoveryBasebackupName = "string",
ServiceToForkFrom = "string",
StaticIps = "string",
},
AdditionalDiskSpace = "string",
DiskSpace = "string",
ProjectVpcId = "string",
ServiceIntegrations = new[]
{
new Aiven.Inputs.OpenSearchServiceIntegrationArgs
{
IntegrationType = "string",
SourceServiceName = "string",
},
},
CloudName = "string",
StaticIps = new[]
{
"string",
},
Tags = new[]
{
new Aiven.Inputs.OpenSearchTagArgs
{
Key = "string",
Value = "string",
},
},
TerminationProtection = false,
});
example, err := aiven.NewOpenSearch(ctx, "openSearchResource", &aiven.OpenSearchArgs{
Project: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Plan: pulumi.String("string"),
MaintenanceWindowDow: pulumi.String("string"),
MaintenanceWindowTime: pulumi.String("string"),
OpensearchUserConfig: &aiven.OpenSearchOpensearchUserConfigArgs{
AdditionalBackupRegions: pulumi.String("string"),
CustomDomain: pulumi.String("string"),
IndexPatterns: aiven.OpenSearchOpensearchUserConfigIndexPatternArray{
&aiven.OpenSearchOpensearchUserConfigIndexPatternArgs{
MaxIndexCount: pulumi.String("string"),
Pattern: pulumi.String("string"),
SortingAlgorithm: pulumi.String("string"),
},
},
IndexTemplate: &aiven.OpenSearchOpensearchUserConfigIndexTemplateArgs{
MappingNestedObjectsLimit: pulumi.String("string"),
NumberOfReplicas: pulumi.String("string"),
NumberOfShards: pulumi.String("string"),
},
IpFilterObjects: aiven.OpenSearchOpensearchUserConfigIpFilterObjectArray{
&aiven.OpenSearchOpensearchUserConfigIpFilterObjectArgs{
Description: pulumi.String("string"),
Network: pulumi.String("string"),
},
},
IpFilters: pulumi.StringArray{
pulumi.String("string"),
},
KeepIndexRefreshInterval: pulumi.String("string"),
Opensearch: &aiven.OpenSearchOpensearchUserConfigOpensearchArgs{
ActionAutoCreateIndexEnabled: pulumi.String("string"),
ActionDestructiveRequiresName: pulumi.String("string"),
ClusterMaxShardsPerNode: pulumi.String("string"),
ClusterRoutingAllocationNodeConcurrentRecoveries: pulumi.String("string"),
EmailSenderName: pulumi.String("string"),
EmailSenderPassword: pulumi.String("string"),
EmailSenderUsername: pulumi.String("string"),
HttpMaxContentLength: pulumi.String("string"),
HttpMaxHeaderSize: pulumi.String("string"),
HttpMaxInitialLineLength: pulumi.String("string"),
IndicesFielddataCacheSize: pulumi.String("string"),
IndicesMemoryIndexBufferSize: pulumi.String("string"),
IndicesQueriesCacheSize: pulumi.String("string"),
IndicesQueryBoolMaxClauseCount: pulumi.String("string"),
IndicesRecoveryMaxBytesPerSec: pulumi.String("string"),
IndicesRecoveryMaxConcurrentFileChunks: pulumi.String("string"),
OverrideMainResponseVersion: pulumi.String("string"),
ReindexRemoteWhitelists: pulumi.StringArray{
pulumi.String("string"),
},
ScriptMaxCompilationsRate: pulumi.String("string"),
SearchMaxBuckets: pulumi.String("string"),
ThreadPoolAnalyzeQueueSize: pulumi.String("string"),
ThreadPoolAnalyzeSize: pulumi.String("string"),
ThreadPoolForceMergeSize: pulumi.String("string"),
ThreadPoolGetQueueSize: pulumi.String("string"),
ThreadPoolGetSize: pulumi.String("string"),
ThreadPoolSearchQueueSize: pulumi.String("string"),
ThreadPoolSearchSize: pulumi.String("string"),
ThreadPoolSearchThrottledQueueSize: pulumi.String("string"),
ThreadPoolSearchThrottledSize: pulumi.String("string"),
ThreadPoolWriteQueueSize: pulumi.String("string"),
ThreadPoolWriteSize: pulumi.String("string"),
},
OpensearchDashboards: &aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs{
Enabled: pulumi.String("string"),
MaxOldSpaceSize: pulumi.String("string"),
OpensearchRequestTimeout: pulumi.String("string"),
},
OpensearchVersion: pulumi.String("string"),
PrivateAccess: &aiven.OpenSearchOpensearchUserConfigPrivateAccessArgs{
Opensearch: pulumi.String("string"),
OpensearchDashboards: pulumi.String("string"),
Prometheus: pulumi.String("string"),
},
PrivatelinkAccess: &aiven.OpenSearchOpensearchUserConfigPrivatelinkAccessArgs{
Opensearch: pulumi.String("string"),
OpensearchDashboards: pulumi.String("string"),
Prometheus: pulumi.String("string"),
},
ProjectToForkFrom: pulumi.String("string"),
PublicAccess: &aiven.OpenSearchOpensearchUserConfigPublicAccessArgs{
Opensearch: pulumi.String("string"),
OpensearchDashboards: pulumi.String("string"),
Prometheus: pulumi.String("string"),
},
RecoveryBasebackupName: pulumi.String("string"),
ServiceToForkFrom: pulumi.String("string"),
StaticIps: pulumi.String("string"),
},
AdditionalDiskSpace: pulumi.String("string"),
DiskSpace: pulumi.String("string"),
ProjectVpcId: pulumi.String("string"),
ServiceIntegrations: aiven.OpenSearchServiceIntegrationArray{
&aiven.OpenSearchServiceIntegrationArgs{
IntegrationType: pulumi.String("string"),
SourceServiceName: pulumi.String("string"),
},
},
CloudName: pulumi.String("string"),
StaticIps: pulumi.StringArray{
pulumi.String("string"),
},
Tags: aiven.OpenSearchTagArray{
&aiven.OpenSearchTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TerminationProtection: pulumi.Bool(false),
})
var openSearchResource = new OpenSearch("openSearchResource", OpenSearchArgs.builder()
.project("string")
.serviceName("string")
.plan("string")
.maintenanceWindowDow("string")
.maintenanceWindowTime("string")
.opensearchUserConfig(OpenSearchOpensearchUserConfigArgs.builder()
.additionalBackupRegions("string")
.customDomain("string")
.indexPatterns(OpenSearchOpensearchUserConfigIndexPatternArgs.builder()
.maxIndexCount("string")
.pattern("string")
.sortingAlgorithm("string")
.build())
.indexTemplate(OpenSearchOpensearchUserConfigIndexTemplateArgs.builder()
.mappingNestedObjectsLimit("string")
.numberOfReplicas("string")
.numberOfShards("string")
.build())
.ipFilterObjects(OpenSearchOpensearchUserConfigIpFilterObjectArgs.builder()
.description("string")
.network("string")
.build())
.ipFilters("string")
.keepIndexRefreshInterval("string")
.opensearch(OpenSearchOpensearchUserConfigOpensearchArgs.builder()
.actionAutoCreateIndexEnabled("string")
.actionDestructiveRequiresName("string")
.clusterMaxShardsPerNode("string")
.clusterRoutingAllocationNodeConcurrentRecoveries("string")
.emailSenderName("string")
.emailSenderPassword("string")
.emailSenderUsername("string")
.httpMaxContentLength("string")
.httpMaxHeaderSize("string")
.httpMaxInitialLineLength("string")
.indicesFielddataCacheSize("string")
.indicesMemoryIndexBufferSize("string")
.indicesQueriesCacheSize("string")
.indicesQueryBoolMaxClauseCount("string")
.indicesRecoveryMaxBytesPerSec("string")
.indicesRecoveryMaxConcurrentFileChunks("string")
.overrideMainResponseVersion("string")
.reindexRemoteWhitelists("string")
.scriptMaxCompilationsRate("string")
.searchMaxBuckets("string")
.threadPoolAnalyzeQueueSize("string")
.threadPoolAnalyzeSize("string")
.threadPoolForceMergeSize("string")
.threadPoolGetQueueSize("string")
.threadPoolGetSize("string")
.threadPoolSearchQueueSize("string")
.threadPoolSearchSize("string")
.threadPoolSearchThrottledQueueSize("string")
.threadPoolSearchThrottledSize("string")
.threadPoolWriteQueueSize("string")
.threadPoolWriteSize("string")
.build())
.opensearchDashboards(OpenSearchOpensearchUserConfigOpensearchDashboardsArgs.builder()
.enabled("string")
.maxOldSpaceSize("string")
.opensearchRequestTimeout("string")
.build())
.opensearchVersion("string")
.privateAccess(OpenSearchOpensearchUserConfigPrivateAccessArgs.builder()
.opensearch("string")
.opensearchDashboards("string")
.prometheus("string")
.build())
.privatelinkAccess(OpenSearchOpensearchUserConfigPrivatelinkAccessArgs.builder()
.opensearch("string")
.opensearchDashboards("string")
.prometheus("string")
.build())
.projectToForkFrom("string")
.publicAccess(OpenSearchOpensearchUserConfigPublicAccessArgs.builder()
.opensearch("string")
.opensearchDashboards("string")
.prometheus("string")
.build())
.recoveryBasebackupName("string")
.serviceToForkFrom("string")
.staticIps("string")
.build())
.additionalDiskSpace("string")
.diskSpace("string")
.projectVpcId("string")
.serviceIntegrations(OpenSearchServiceIntegrationArgs.builder()
.integrationType("string")
.sourceServiceName("string")
.build())
.cloudName("string")
.staticIps("string")
.tags(OpenSearchTagArgs.builder()
.key("string")
.value("string")
.build())
.terminationProtection(false)
.build());
open_search_resource = aiven.OpenSearch("openSearchResource",
project="string",
service_name="string",
plan="string",
maintenance_window_dow="string",
maintenance_window_time="string",
opensearch_user_config={
"additional_backup_regions": "string",
"custom_domain": "string",
"index_patterns": [{
"max_index_count": "string",
"pattern": "string",
"sorting_algorithm": "string",
}],
"index_template": {
"mapping_nested_objects_limit": "string",
"number_of_replicas": "string",
"number_of_shards": "string",
},
"ip_filter_objects": [{
"description": "string",
"network": "string",
}],
"ip_filters": ["string"],
"keep_index_refresh_interval": "string",
"opensearch": {
"action_auto_create_index_enabled": "string",
"action_destructive_requires_name": "string",
"cluster_max_shards_per_node": "string",
"cluster_routing_allocation_node_concurrent_recoveries": "string",
"email_sender_name": "string",
"email_sender_password": "string",
"email_sender_username": "string",
"http_max_content_length": "string",
"http_max_header_size": "string",
"http_max_initial_line_length": "string",
"indices_fielddata_cache_size": "string",
"indices_memory_index_buffer_size": "string",
"indices_queries_cache_size": "string",
"indices_query_bool_max_clause_count": "string",
"indices_recovery_max_bytes_per_sec": "string",
"indices_recovery_max_concurrent_file_chunks": "string",
"override_main_response_version": "string",
"reindex_remote_whitelists": ["string"],
"script_max_compilations_rate": "string",
"search_max_buckets": "string",
"thread_pool_analyze_queue_size": "string",
"thread_pool_analyze_size": "string",
"thread_pool_force_merge_size": "string",
"thread_pool_get_queue_size": "string",
"thread_pool_get_size": "string",
"thread_pool_search_queue_size": "string",
"thread_pool_search_size": "string",
"thread_pool_search_throttled_queue_size": "string",
"thread_pool_search_throttled_size": "string",
"thread_pool_write_queue_size": "string",
"thread_pool_write_size": "string",
},
"opensearch_dashboards": {
"enabled": "string",
"max_old_space_size": "string",
"opensearch_request_timeout": "string",
},
"opensearch_version": "string",
"private_access": {
"opensearch": "string",
"opensearch_dashboards": "string",
"prometheus": "string",
},
"privatelink_access": {
"opensearch": "string",
"opensearch_dashboards": "string",
"prometheus": "string",
},
"project_to_fork_from": "string",
"public_access": {
"opensearch": "string",
"opensearch_dashboards": "string",
"prometheus": "string",
},
"recovery_basebackup_name": "string",
"service_to_fork_from": "string",
"static_ips": "string",
},
additional_disk_space="string",
disk_space="string",
project_vpc_id="string",
service_integrations=[{
"integration_type": "string",
"source_service_name": "string",
}],
cloud_name="string",
static_ips=["string"],
tags=[{
"key": "string",
"value": "string",
}],
termination_protection=False)
const openSearchResource = new aiven.OpenSearch("openSearchResource", {
project: "string",
serviceName: "string",
plan: "string",
maintenanceWindowDow: "string",
maintenanceWindowTime: "string",
opensearchUserConfig: {
additionalBackupRegions: "string",
customDomain: "string",
indexPatterns: [{
maxIndexCount: "string",
pattern: "string",
sortingAlgorithm: "string",
}],
indexTemplate: {
mappingNestedObjectsLimit: "string",
numberOfReplicas: "string",
numberOfShards: "string",
},
ipFilterObjects: [{
description: "string",
network: "string",
}],
ipFilters: ["string"],
keepIndexRefreshInterval: "string",
opensearch: {
actionAutoCreateIndexEnabled: "string",
actionDestructiveRequiresName: "string",
clusterMaxShardsPerNode: "string",
clusterRoutingAllocationNodeConcurrentRecoveries: "string",
emailSenderName: "string",
emailSenderPassword: "string",
emailSenderUsername: "string",
httpMaxContentLength: "string",
httpMaxHeaderSize: "string",
httpMaxInitialLineLength: "string",
indicesFielddataCacheSize: "string",
indicesMemoryIndexBufferSize: "string",
indicesQueriesCacheSize: "string",
indicesQueryBoolMaxClauseCount: "string",
indicesRecoveryMaxBytesPerSec: "string",
indicesRecoveryMaxConcurrentFileChunks: "string",
overrideMainResponseVersion: "string",
reindexRemoteWhitelists: ["string"],
scriptMaxCompilationsRate: "string",
searchMaxBuckets: "string",
threadPoolAnalyzeQueueSize: "string",
threadPoolAnalyzeSize: "string",
threadPoolForceMergeSize: "string",
threadPoolGetQueueSize: "string",
threadPoolGetSize: "string",
threadPoolSearchQueueSize: "string",
threadPoolSearchSize: "string",
threadPoolSearchThrottledQueueSize: "string",
threadPoolSearchThrottledSize: "string",
threadPoolWriteQueueSize: "string",
threadPoolWriteSize: "string",
},
opensearchDashboards: {
enabled: "string",
maxOldSpaceSize: "string",
opensearchRequestTimeout: "string",
},
opensearchVersion: "string",
privateAccess: {
opensearch: "string",
opensearchDashboards: "string",
prometheus: "string",
},
privatelinkAccess: {
opensearch: "string",
opensearchDashboards: "string",
prometheus: "string",
},
projectToForkFrom: "string",
publicAccess: {
opensearch: "string",
opensearchDashboards: "string",
prometheus: "string",
},
recoveryBasebackupName: "string",
serviceToForkFrom: "string",
staticIps: "string",
},
additionalDiskSpace: "string",
diskSpace: "string",
projectVpcId: "string",
serviceIntegrations: [{
integrationType: "string",
sourceServiceName: "string",
}],
cloudName: "string",
staticIps: ["string"],
tags: [{
key: "string",
value: "string",
}],
terminationProtection: false,
});
type: aiven:OpenSearch
properties:
additionalDiskSpace: string
cloudName: string
diskSpace: string
maintenanceWindowDow: string
maintenanceWindowTime: string
opensearchUserConfig:
additionalBackupRegions: string
customDomain: string
indexPatterns:
- maxIndexCount: string
pattern: string
sortingAlgorithm: string
indexTemplate:
mappingNestedObjectsLimit: string
numberOfReplicas: string
numberOfShards: string
ipFilterObjects:
- description: string
network: string
ipFilters:
- string
keepIndexRefreshInterval: string
opensearch:
actionAutoCreateIndexEnabled: string
actionDestructiveRequiresName: string
clusterMaxShardsPerNode: string
clusterRoutingAllocationNodeConcurrentRecoveries: string
emailSenderName: string
emailSenderPassword: string
emailSenderUsername: string
httpMaxContentLength: string
httpMaxHeaderSize: string
httpMaxInitialLineLength: string
indicesFielddataCacheSize: string
indicesMemoryIndexBufferSize: string
indicesQueriesCacheSize: string
indicesQueryBoolMaxClauseCount: string
indicesRecoveryMaxBytesPerSec: string
indicesRecoveryMaxConcurrentFileChunks: string
overrideMainResponseVersion: string
reindexRemoteWhitelists:
- string
scriptMaxCompilationsRate: string
searchMaxBuckets: string
threadPoolAnalyzeQueueSize: string
threadPoolAnalyzeSize: string
threadPoolForceMergeSize: string
threadPoolGetQueueSize: string
threadPoolGetSize: string
threadPoolSearchQueueSize: string
threadPoolSearchSize: string
threadPoolSearchThrottledQueueSize: string
threadPoolSearchThrottledSize: string
threadPoolWriteQueueSize: string
threadPoolWriteSize: string
opensearchDashboards:
enabled: string
maxOldSpaceSize: string
opensearchRequestTimeout: string
opensearchVersion: string
privateAccess:
opensearch: string
opensearchDashboards: string
prometheus: string
privatelinkAccess:
opensearch: string
opensearchDashboards: string
prometheus: string
projectToForkFrom: string
publicAccess:
opensearch: string
opensearchDashboards: string
prometheus: string
recoveryBasebackupName: string
serviceToForkFrom: string
staticIps: string
plan: string
project: string
projectVpcId: string
serviceIntegrations:
- integrationType: string
sourceServiceName: string
serviceName: string
staticIps:
- string
tags:
- key: string
value: string
terminationProtection: false
OpenSearch 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 OpenSearch resource accepts the following input properties:
- Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Opensearch
User OpenConfig Search Opensearch User Config - Opensearch user configurable settings
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations List<OpenSearch Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- Static
Ips List<string> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Open
Search Tag> - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Opensearch
User OpenConfig Search Opensearch User Config Args - Opensearch user configurable settings
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations []OpenSearch Service Integration Args - Service integrations to specify when creating a service. Not applied after initial service creation
- Static
Ips []string - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
[]Open
Search Tag Args - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch
User OpenConfig Search Opensearch User Config - Opensearch user configurable settings
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations List<OpenSearch Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Open
Search Tag> - Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch
User OpenConfig Search Opensearch User Config - Opensearch user configurable settings
- plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations OpenSearch Service Integration[] - Service integrations to specify when creating a service. Not applied after initial service creation
- static
Ips string[] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Open
Search Tag[] - Tags are key-value pairs that allow you to categorize services.
- termination
Protection boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project str
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service_
name str - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional_
disk_ strspace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud_
name str - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk_
space str - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- maintenance_
window_ strdow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch_
user_ Openconfig Search Opensearch User Config Args - Opensearch user configurable settings
- plan str
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project_
vpc_ strid - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
integrations Sequence[OpenSearch Service Integration Args] - Service integrations to specify when creating a service. Not applied after initial service creation
- static_
ips Sequence[str] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Sequence[Open
Search Tag Args] - Tags are key-value pairs that allow you to categorize services.
- termination_
protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch
User Property MapConfig - Opensearch user configurable settings
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations List<Property Map> - Service integrations to specify when creating a service. Not applied after initial service creation
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Outputs
All input properties are implicitly available as output properties. Additionally, the OpenSearch resource produces the following output properties:
- Components
List<Open
Search Component> - Service component information objects
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- Opensearches
List<Open
Search Opensearch> - Opensearch server provided values
- Service
Host string - The hostname of the service.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- Components
[]Open
Search Component - Service component information objects
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- Opensearches
[]Open
Search Opensearch - Opensearch server provided values
- Service
Host string - The hostname of the service.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components
List<Open
Search Component> - Service component information objects
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- opensearches
List<Open
Search Opensearch> - Opensearch server provided values
- service
Host String - The hostname of the service.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Integer - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components
Open
Search Component[] - Service component information objects
- disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space stringUsed - Disk space that service is currently using
- id string
- The provider-assigned unique ID for this managed resource.
- opensearches
Open
Search Opensearch[] - Opensearch server provided values
- service
Host string - The hostname of the service.
- service
Password string - Password used for connecting to the service, if applicable
- service
Port number - The port of the service
- service
Type string - Aiven internal service type code
- service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username string - Username used for connecting to the service, if applicable
- state string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components
Sequence[Open
Search Component] - Service component information objects
- disk_
space_ strcap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_
space_ strdefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk_
space_ strstep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk_
space_ strused - Disk space that service is currently using
- id str
- The provider-assigned unique ID for this managed resource.
- opensearches
Sequence[Open
Search Opensearch] - Opensearch server provided values
- service_
host str - The hostname of the service.
- service_
password str - Password used for connecting to the service, if applicable
- service_
port int - The port of the service
- service_
type str - Aiven internal service type code
- service_
uri str - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service_
username str - Username used for connecting to the service, if applicable
- state str
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components List<Property Map>
- Service component information objects
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- opensearches List<Property Map>
- Opensearch server provided values
- service
Host String - The hostname of the service.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Number - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
Look up Existing OpenSearch Resource
Get an existing OpenSearch 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?: OpenSearchState, opts?: CustomResourceOptions): OpenSearch@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_disk_space: Optional[str] = None,
cloud_name: Optional[str] = None,
components: Optional[Sequence[OpenSearchComponentArgs]] = None,
disk_space: Optional[str] = None,
disk_space_cap: Optional[str] = None,
disk_space_default: Optional[str] = None,
disk_space_step: Optional[str] = None,
disk_space_used: Optional[str] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
opensearch_user_config: Optional[OpenSearchOpensearchUserConfigArgs] = None,
opensearches: Optional[Sequence[OpenSearchOpensearchArgs]] = None,
plan: Optional[str] = None,
project: Optional[str] = None,
project_vpc_id: Optional[str] = None,
service_host: Optional[str] = None,
service_integrations: Optional[Sequence[OpenSearchServiceIntegrationArgs]] = None,
service_name: Optional[str] = None,
service_password: Optional[str] = None,
service_port: Optional[int] = None,
service_type: Optional[str] = None,
service_uri: Optional[str] = None,
service_username: Optional[str] = None,
state: Optional[str] = None,
static_ips: Optional[Sequence[str]] = None,
tags: Optional[Sequence[OpenSearchTagArgs]] = None,
termination_protection: Optional[bool] = None) -> OpenSearchfunc GetOpenSearch(ctx *Context, name string, id IDInput, state *OpenSearchState, opts ...ResourceOption) (*OpenSearch, error)public static OpenSearch Get(string name, Input<string> id, OpenSearchState? state, CustomResourceOptions? opts = null)public static OpenSearch get(String name, Output<String> id, OpenSearchState state, CustomResourceOptions options)resources: _: type: aiven:OpenSearch get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Components
List<Open
Search Component> - Service component information objects
- Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Opensearch
User OpenConfig Search Opensearch User Config - Opensearch user configurable settings
- Opensearches
List<Open
Search Opensearch> - Opensearch server provided values
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string - The hostname of the service.
- Service
Integrations List<OpenSearch Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - Static
Ips List<string> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Open
Search Tag> - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Components
[]Open
Search Component Args - Service component information objects
- Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Opensearch
User OpenConfig Search Opensearch User Config Args - Opensearch user configurable settings
- Opensearches
[]Open
Search Opensearch Args - Opensearch server provided values
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string - The hostname of the service.
- Service
Integrations []OpenSearch Service Integration Args - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - Static
Ips []string - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
[]Open
Search Tag Args - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
List<Open
Search Component> - Service component information objects
- disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch
User OpenConfig Search Opensearch User Config - Opensearch user configurable settings
- opensearches
List<Open
Search Opensearch> - Opensearch server provided values
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host String - The hostname of the service.
- service
Integrations List<OpenSearch Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Integer - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Open
Search Tag> - Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
Open
Search Component[] - Service component information objects
- disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space stringUsed - Disk space that service is currently using
- maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch
User OpenConfig Search Opensearch User Config - Opensearch user configurable settings
- opensearches
Open
Search Opensearch[] - Opensearch server provided values
- plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host string - The hostname of the service.
- service
Integrations OpenSearch Service Integration[] - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password string - Password used for connecting to the service, if applicable
- service
Port number - The port of the service
- service
Type string - Aiven internal service type code
- service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username string - Username used for connecting to the service, if applicable
- state string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static
Ips string[] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Open
Search Tag[] - Tags are key-value pairs that allow you to categorize services.
- termination
Protection boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional_
disk_ strspace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud_
name str - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
Sequence[Open
Search Component Args] - Service component information objects
- disk_
space str - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk_
space_ strcap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_
space_ strdefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk_
space_ strstep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk_
space_ strused - Disk space that service is currently using
- maintenance_
window_ strdow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch_
user_ Openconfig Search Opensearch User Config Args - Opensearch user configurable settings
- opensearches
Sequence[Open
Search Opensearch Args] - Opensearch server provided values
- plan str
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project str
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project_
vpc_ strid - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
host str - The hostname of the service.
- service_
integrations Sequence[OpenSearch Service Integration Args] - Service integrations to specify when creating a service. Not applied after initial service creation
- service_
name str - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service_
password str - Password used for connecting to the service, if applicable
- service_
port int - The port of the service
- service_
type str - Aiven internal service type code
- service_
uri str - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service_
username str - Username used for connecting to the service, if applicable
- state str
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static_
ips Sequence[str] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Sequence[Open
Search Tag Args] - Tags are key-value pairs that allow you to categorize services.
- termination_
protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components List<Property Map>
- Service component information objects
- disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- opensearch
User Property MapConfig - Opensearch user configurable settings
- opensearches List<Property Map>
- Opensearch server provided values
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host String - The hostname of the service.
- service
Integrations List<Property Map> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Number - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Supporting Types
OpenSearchComponent, OpenSearchComponentArgs
OpenSearchOpensearch, OpenSearchOpensearchArgs
- Opensearch
Dashboards stringUri
- Opensearch
Dashboards stringUri
- opensearch
Dashboards StringUri
- opensearch
Dashboards stringUri
- opensearch
Dashboards StringUri
OpenSearchOpensearchUserConfig, OpenSearchOpensearchUserConfigArgs
- Additional
Backup stringRegions - Additional Cloud Regions for Backup Replication
- Custom
Domain string - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- Disable
Replication stringFactor Adjustment - Index
Patterns List<OpenSearch Opensearch User Config Index Pattern> - Index patterns
- Index
Template OpenSearch Opensearch User Config Index Template - Template settings for all new indexes
- Ip
Filter List<OpenObjects Search Opensearch User Config Ip Filter Object> - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- Ip
Filters List<string> - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- Keep
Index stringRefresh Interval - Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
- Max
Index stringCount - Opensearch
Open
Search Opensearch User Config Opensearch - OpenSearch settings
- Opensearch
Dashboards OpenSearch Opensearch User Config Opensearch Dashboards - OpenSearch Dashboards settings
- Opensearch
Version string - OpenSearch major version
- Private
Access OpenSearch Opensearch User Config Private Access - Allow access to selected service ports from private networks
- Privatelink
Access OpenSearch Opensearch User Config Privatelink Access - Allow access to selected service components through Privatelink
- Project
To stringFork From - Name of another project to fork a service from. This has effect only when a new service is being created.
- Public
Access OpenSearch Opensearch User Config Public Access - Allow access to selected service ports from the public Internet
- Recovery
Basebackup stringName - Name of the basebackup to restore in forked service
- Service
To stringFork From - Name of another service to fork from. This has effect only when a new service is being created.
- Static
Ips string - Use static public IP addresses
- Additional
Backup stringRegions - Additional Cloud Regions for Backup Replication
- Custom
Domain string - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- Disable
Replication stringFactor Adjustment - Index
Patterns []OpenSearch Opensearch User Config Index Pattern - Index patterns
- Index
Template OpenSearch Opensearch User Config Index Template - Template settings for all new indexes
- Ip
Filter []OpenObjects Search Opensearch User Config Ip Filter Object - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- Ip
Filters []string - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- Keep
Index stringRefresh Interval - Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
- Max
Index stringCount - Opensearch
Open
Search Opensearch User Config Opensearch - OpenSearch settings
- Opensearch
Dashboards OpenSearch Opensearch User Config Opensearch Dashboards - OpenSearch Dashboards settings
- Opensearch
Version string - OpenSearch major version
- Private
Access OpenSearch Opensearch User Config Private Access - Allow access to selected service ports from private networks
- Privatelink
Access OpenSearch Opensearch User Config Privatelink Access - Allow access to selected service components through Privatelink
- Project
To stringFork From - Name of another project to fork a service from. This has effect only when a new service is being created.
- Public
Access OpenSearch Opensearch User Config Public Access - Allow access to selected service ports from the public Internet
- Recovery
Basebackup stringName - Name of the basebackup to restore in forked service
- Service
To stringFork From - Name of another service to fork from. This has effect only when a new service is being created.
- Static
Ips string - Use static public IP addresses
- additional
Backup StringRegions - Additional Cloud Regions for Backup Replication
- custom
Domain String - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- disable
Replication StringFactor Adjustment - index
Patterns List<OpenSearch Opensearch User Config Index Pattern> - Index patterns
- index
Template OpenSearch Opensearch User Config Index Template - Template settings for all new indexes
- ip
Filter List<OpenObjects Search Opensearch User Config Ip Filter Object> - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- ip
Filters List<String> - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- keep
Index StringRefresh Interval - Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
- max
Index StringCount - opensearch
Open
Search Opensearch User Config Opensearch - OpenSearch settings
- opensearch
Dashboards OpenSearch Opensearch User Config Opensearch Dashboards - OpenSearch Dashboards settings
- opensearch
Version String - OpenSearch major version
- private
Access OpenSearch Opensearch User Config Private Access - Allow access to selected service ports from private networks
- privatelink
Access OpenSearch Opensearch User Config Privatelink Access - Allow access to selected service components through Privatelink
- project
To StringFork From - Name of another project to fork a service from. This has effect only when a new service is being created.
- public
Access OpenSearch Opensearch User Config Public Access - Allow access to selected service ports from the public Internet
- recovery
Basebackup StringName - Name of the basebackup to restore in forked service
- service
To StringFork From - Name of another service to fork from. This has effect only when a new service is being created.
- static
Ips String - Use static public IP addresses
- additional
Backup stringRegions - Additional Cloud Regions for Backup Replication
- custom
Domain string - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- disable
Replication stringFactor Adjustment - index
Patterns OpenSearch Opensearch User Config Index Pattern[] - Index patterns
- index
Template OpenSearch Opensearch User Config Index Template - Template settings for all new indexes
- ip
Filter OpenObjects Search Opensearch User Config Ip Filter Object[] - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- ip
Filters string[] - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- keep
Index stringRefresh Interval - Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
- max
Index stringCount - opensearch
Open
Search Opensearch User Config Opensearch - OpenSearch settings
- opensearch
Dashboards OpenSearch Opensearch User Config Opensearch Dashboards - OpenSearch Dashboards settings
- opensearch
Version string - OpenSearch major version
- private
Access OpenSearch Opensearch User Config Private Access - Allow access to selected service ports from private networks
- privatelink
Access OpenSearch Opensearch User Config Privatelink Access - Allow access to selected service components through Privatelink
- project
To stringFork From - Name of another project to fork a service from. This has effect only when a new service is being created.
- public
Access OpenSearch Opensearch User Config Public Access - Allow access to selected service ports from the public Internet
- recovery
Basebackup stringName - Name of the basebackup to restore in forked service
- service
To stringFork From - Name of another service to fork from. This has effect only when a new service is being created.
- static
Ips string - Use static public IP addresses
- additional_
backup_ strregions - Additional Cloud Regions for Backup Replication
- custom_
domain str - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- disable_
replication_ strfactor_ adjustment - index_
patterns Sequence[OpenSearch Opensearch User Config Index Pattern] - Index patterns
- index_
template OpenSearch Opensearch User Config Index Template - Template settings for all new indexes
- ip_
filter_ Sequence[Openobjects Search Opensearch User Config Ip Filter Object] - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- ip_
filters Sequence[str] - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- keep_
index_ strrefresh_ interval - Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
- max_
index_ strcount - opensearch
Open
Search Opensearch User Config Opensearch - OpenSearch settings
- opensearch_
dashboards OpenSearch Opensearch User Config Opensearch Dashboards - OpenSearch Dashboards settings
- opensearch_
version str - OpenSearch major version
- private_
access OpenSearch Opensearch User Config Private Access - Allow access to selected service ports from private networks
- privatelink_
access OpenSearch Opensearch User Config Privatelink Access - Allow access to selected service components through Privatelink
- project_
to_ strfork_ from - Name of another project to fork a service from. This has effect only when a new service is being created.
- public_
access OpenSearch Opensearch User Config Public Access - Allow access to selected service ports from the public Internet
- recovery_
basebackup_ strname - Name of the basebackup to restore in forked service
- service_
to_ strfork_ from - Name of another service to fork from. This has effect only when a new service is being created.
- static_
ips str - Use static public IP addresses
- additional
Backup StringRegions - Additional Cloud Regions for Backup Replication
- custom
Domain String - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- disable
Replication StringFactor Adjustment - index
Patterns List<Property Map> - Index patterns
- index
Template Property Map - Template settings for all new indexes
- ip
Filter List<Property Map>Objects - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- ip
Filters List<String> - Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
- keep
Index StringRefresh Interval - Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
- max
Index StringCount - opensearch Property Map
- OpenSearch settings
- opensearch
Dashboards Property Map - OpenSearch Dashboards settings
- opensearch
Version String - OpenSearch major version
- private
Access Property Map - Allow access to selected service ports from private networks
- privatelink
Access Property Map - Allow access to selected service components through Privatelink
- project
To StringFork From - Name of another project to fork a service from. This has effect only when a new service is being created.
- public
Access Property Map - Allow access to selected service ports from the public Internet
- recovery
Basebackup StringName - Name of the basebackup to restore in forked service
- service
To StringFork From - Name of another service to fork from. This has effect only when a new service is being created.
- static
Ips String - Use static public IP addresses
OpenSearchOpensearchUserConfigIndexPattern, OpenSearchOpensearchUserConfigIndexPatternArgs
- Max
Index stringCount - Pattern string
- Sorting
Algorithm string
- Max
Index stringCount - Pattern string
- Sorting
Algorithm string
- max
Index StringCount - pattern String
- sorting
Algorithm String
- max
Index stringCount - pattern string
- sorting
Algorithm string
- max_
index_ strcount - pattern str
- sorting_
algorithm str
- max
Index StringCount - pattern String
- sorting
Algorithm String
OpenSearchOpensearchUserConfigIndexTemplate, OpenSearchOpensearchUserConfigIndexTemplateArgs
- Mapping
Nested stringObjects Limit - Number
Of stringReplicas - Number
Of stringShards
- Mapping
Nested stringObjects Limit - Number
Of stringReplicas - Number
Of stringShards
- mapping
Nested StringObjects Limit - number
Of StringReplicas - number
Of StringShards
- mapping
Nested stringObjects Limit - number
Of stringReplicas - number
Of stringShards
- mapping
Nested StringObjects Limit - number
Of StringReplicas - number
Of StringShards
OpenSearchOpensearchUserConfigIpFilterObject, OpenSearchOpensearchUserConfigIpFilterObjectArgs
- Description string
- Network string
- Description string
- Network string
- description String
- network String
- description string
- network string
- description str
- network str
- description String
- network String
OpenSearchOpensearchUserConfigOpensearch, OpenSearchOpensearchUserConfigOpensearchArgs
- Action
Auto stringCreate Index Enabled - Action
Destructive stringRequires Name - Cluster
Max stringShards Per Node - Cluster
Routing stringAllocation Node Concurrent Recoveries - Email
Sender stringName - Email
Sender stringPassword - Email
Sender stringUsername - Http
Max stringContent Length - Http
Max stringHeader Size - Http
Max stringInitial Line Length - Indices
Fielddata stringCache Size - Indices
Memory stringIndex Buffer Size - Indices
Queries stringCache Size - Indices
Query stringBool Max Clause Count - Indices
Recovery stringMax Bytes Per Sec - Indices
Recovery stringMax Concurrent File Chunks - Override
Main stringResponse Version - Reindex
Remote List<string>Whitelists - Script
Max stringCompilations Rate - Search
Max stringBuckets - Thread
Pool stringAnalyze Queue Size - Thread
Pool stringAnalyze Size - Thread
Pool stringForce Merge Size - Thread
Pool stringGet Queue Size - Thread
Pool stringGet Size - Thread
Pool stringSearch Queue Size - Thread
Pool stringSearch Size - Thread
Pool stringSearch Throttled Queue Size - Thread
Pool stringSearch Throttled Size - Thread
Pool stringWrite Queue Size - Thread
Pool stringWrite Size
- Action
Auto stringCreate Index Enabled - Action
Destructive stringRequires Name - Cluster
Max stringShards Per Node - Cluster
Routing stringAllocation Node Concurrent Recoveries - Email
Sender stringName - Email
Sender stringPassword - Email
Sender stringUsername - Http
Max stringContent Length - Http
Max stringHeader Size - Http
Max stringInitial Line Length - Indices
Fielddata stringCache Size - Indices
Memory stringIndex Buffer Size - Indices
Queries stringCache Size - Indices
Query stringBool Max Clause Count - Indices
Recovery stringMax Bytes Per Sec - Indices
Recovery stringMax Concurrent File Chunks - Override
Main stringResponse Version - Reindex
Remote []stringWhitelists - Script
Max stringCompilations Rate - Search
Max stringBuckets - Thread
Pool stringAnalyze Queue Size - Thread
Pool stringAnalyze Size - Thread
Pool stringForce Merge Size - Thread
Pool stringGet Queue Size - Thread
Pool stringGet Size - Thread
Pool stringSearch Queue Size - Thread
Pool stringSearch Size - Thread
Pool stringSearch Throttled Queue Size - Thread
Pool stringSearch Throttled Size - Thread
Pool stringWrite Queue Size - Thread
Pool stringWrite Size
- action
Auto StringCreate Index Enabled - action
Destructive StringRequires Name - cluster
Max StringShards Per Node - cluster
Routing StringAllocation Node Concurrent Recoveries - email
Sender StringName - email
Sender StringPassword - email
Sender StringUsername - http
Max StringContent Length - http
Max StringHeader Size - http
Max StringInitial Line Length - indices
Fielddata StringCache Size - indices
Memory StringIndex Buffer Size - indices
Queries StringCache Size - indices
Query StringBool Max Clause Count - indices
Recovery StringMax Bytes Per Sec - indices
Recovery StringMax Concurrent File Chunks - override
Main StringResponse Version - reindex
Remote List<String>Whitelists - script
Max StringCompilations Rate - search
Max StringBuckets - thread
Pool StringAnalyze Queue Size - thread
Pool StringAnalyze Size - thread
Pool StringForce Merge Size - thread
Pool StringGet Queue Size - thread
Pool StringGet Size - thread
Pool StringSearch Queue Size - thread
Pool StringSearch Size - thread
Pool StringSearch Throttled Queue Size - thread
Pool StringSearch Throttled Size - thread
Pool StringWrite Queue Size - thread
Pool StringWrite Size
- action
Auto stringCreate Index Enabled - action
Destructive stringRequires Name - cluster
Max stringShards Per Node - cluster
Routing stringAllocation Node Concurrent Recoveries - email
Sender stringName - email
Sender stringPassword - email
Sender stringUsername - http
Max stringContent Length - http
Max stringHeader Size - http
Max stringInitial Line Length - indices
Fielddata stringCache Size - indices
Memory stringIndex Buffer Size - indices
Queries stringCache Size - indices
Query stringBool Max Clause Count - indices
Recovery stringMax Bytes Per Sec - indices
Recovery stringMax Concurrent File Chunks - override
Main stringResponse Version - reindex
Remote string[]Whitelists - script
Max stringCompilations Rate - search
Max stringBuckets - thread
Pool stringAnalyze Queue Size - thread
Pool stringAnalyze Size - thread
Pool stringForce Merge Size - thread
Pool stringGet Queue Size - thread
Pool stringGet Size - thread
Pool stringSearch Queue Size - thread
Pool stringSearch Size - thread
Pool stringSearch Throttled Queue Size - thread
Pool stringSearch Throttled Size - thread
Pool stringWrite Queue Size - thread
Pool stringWrite Size
- action_
auto_ strcreate_ index_ enabled - action_
destructive_ strrequires_ name - cluster_
max_ strshards_ per_ node - cluster_
routing_ strallocation_ node_ concurrent_ recoveries - email_
sender_ strname - email_
sender_ strpassword - email_
sender_ strusername - http_
max_ strcontent_ length - http_
max_ strheader_ size - http_
max_ strinitial_ line_ length - indices_
fielddata_ strcache_ size - indices_
memory_ strindex_ buffer_ size - indices_
queries_ strcache_ size - indices_
query_ strbool_ max_ clause_ count - indices_
recovery_ strmax_ bytes_ per_ sec - indices_
recovery_ strmax_ concurrent_ file_ chunks - override_
main_ strresponse_ version - reindex_
remote_ Sequence[str]whitelists - script_
max_ strcompilations_ rate - search_
max_ strbuckets - thread_
pool_ stranalyze_ queue_ size - thread_
pool_ stranalyze_ size - thread_
pool_ strforce_ merge_ size - thread_
pool_ strget_ queue_ size - thread_
pool_ strget_ size - thread_
pool_ strsearch_ queue_ size - thread_
pool_ strsearch_ size - thread_
pool_ strsearch_ throttled_ queue_ size - thread_
pool_ strsearch_ throttled_ size - thread_
pool_ strwrite_ queue_ size - thread_
pool_ strwrite_ size
- action
Auto StringCreate Index Enabled - action
Destructive StringRequires Name - cluster
Max StringShards Per Node - cluster
Routing StringAllocation Node Concurrent Recoveries - email
Sender StringName - email
Sender StringPassword - email
Sender StringUsername - http
Max StringContent Length - http
Max StringHeader Size - http
Max StringInitial Line Length - indices
Fielddata StringCache Size - indices
Memory StringIndex Buffer Size - indices
Queries StringCache Size - indices
Query StringBool Max Clause Count - indices
Recovery StringMax Bytes Per Sec - indices
Recovery StringMax Concurrent File Chunks - override
Main StringResponse Version - reindex
Remote List<String>Whitelists - script
Max StringCompilations Rate - search
Max StringBuckets - thread
Pool StringAnalyze Queue Size - thread
Pool StringAnalyze Size - thread
Pool StringForce Merge Size - thread
Pool StringGet Queue Size - thread
Pool StringGet Size - thread
Pool StringSearch Queue Size - thread
Pool StringSearch Size - thread
Pool StringSearch Throttled Queue Size - thread
Pool StringSearch Throttled Size - thread
Pool StringWrite Queue Size - thread
Pool StringWrite Size
OpenSearchOpensearchUserConfigOpensearchDashboards, OpenSearchOpensearchUserConfigOpensearchDashboardsArgs
- Enabled string
- Max
Old stringSpace Size - Opensearch
Request stringTimeout
- Enabled string
- Max
Old stringSpace Size - Opensearch
Request stringTimeout
- enabled String
- max
Old StringSpace Size - opensearch
Request StringTimeout
- enabled string
- max
Old stringSpace Size - opensearch
Request stringTimeout
- enabled String
- max
Old StringSpace Size - opensearch
Request StringTimeout
OpenSearchOpensearchUserConfigPrivateAccess, OpenSearchOpensearchUserConfigPrivateAccessArgs
- Opensearch string
- Opensearch server provided values
- Opensearch
Dashboards string - Prometheus string
- Opensearch string
- Opensearch server provided values
- Opensearch
Dashboards string - Prometheus string
- opensearch String
- Opensearch server provided values
- opensearch
Dashboards String - prometheus String
- opensearch string
- Opensearch server provided values
- opensearch
Dashboards string - prometheus string
- opensearch str
- Opensearch server provided values
- opensearch_
dashboards str - prometheus str
- opensearch String
- Opensearch server provided values
- opensearch
Dashboards String - prometheus String
OpenSearchOpensearchUserConfigPrivatelinkAccess, OpenSearchOpensearchUserConfigPrivatelinkAccessArgs
- Opensearch string
- Opensearch server provided values
- Opensearch
Dashboards string - Prometheus string
- Opensearch string
- Opensearch server provided values
- Opensearch
Dashboards string - Prometheus string
- opensearch String
- Opensearch server provided values
- opensearch
Dashboards String - prometheus String
- opensearch string
- Opensearch server provided values
- opensearch
Dashboards string - prometheus string
- opensearch str
- Opensearch server provided values
- opensearch_
dashboards str - prometheus str
- opensearch String
- Opensearch server provided values
- opensearch
Dashboards String - prometheus String
OpenSearchOpensearchUserConfigPublicAccess, OpenSearchOpensearchUserConfigPublicAccessArgs
- Opensearch string
- Opensearch server provided values
- Opensearch
Dashboards string - Prometheus string
- Opensearch string
- Opensearch server provided values
- Opensearch
Dashboards string - Prometheus string
- opensearch String
- Opensearch server provided values
- opensearch
Dashboards String - prometheus String
- opensearch string
- Opensearch server provided values
- opensearch
Dashboards string - prometheus string
- opensearch str
- Opensearch server provided values
- opensearch_
dashboards str - prometheus str
- opensearch String
- Opensearch server provided values
- opensearch
Dashboards String - prometheus String
OpenSearchServiceIntegration, OpenSearchServiceIntegrationArgs
- Integration
Type string - Type of the service integration. The only supported value at the moment is
read_replica - Source
Service stringName - Name of the source service
- Integration
Type string - Type of the service integration. The only supported value at the moment is
read_replica - Source
Service stringName - Name of the source service
- integration
Type String - Type of the service integration. The only supported value at the moment is
read_replica - source
Service StringName - Name of the source service
- integration
Type string - Type of the service integration. The only supported value at the moment is
read_replica - source
Service stringName - Name of the source service
- integration_
type str - Type of the service integration. The only supported value at the moment is
read_replica - source_
service_ strname - Name of the source service
- integration
Type String - Type of the service integration. The only supported value at the moment is
read_replica - source
Service StringName - Name of the source service
OpenSearchTag, OpenSearchTagArgs
Import
$ pulumi import aiven:index/openSearch:OpenSearch os1 project/service_name
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
