getElasticSearch
# Elasticsearch Data Source
The Elasticsearch data source provides information about the existing Aiven Elasticsearch service.
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var es1 = Output.Create(Aiven.GetElasticSearch.InvokeAsync(new Aiven.GetElasticSearchArgs
{
Project = data.Aiven_project.Pr1.Project,
ServiceName = "my-es1",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v3/go/aiven"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.LookupElasticSearch(ctx, &aiven.LookupElasticSearchArgs{
Project: data.Aiven_project.Pr1.Project,
ServiceName: "my-es1",
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_aiven as aiven
es1 = aiven.get_elastic_search(project=data["aiven_project"]["pr1"]["project"],
service_name="my-es1")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const es1 = aiven.getElasticSearch({
project: data.aiven_project.pr1.project,
serviceName: "my-es1",
});
Using getElasticSearch
function getElasticSearch(args: GetElasticSearchArgs, opts?: InvokeOptions): Promise<GetElasticSearchResult>
def get_elastic_search(cloud_name: Optional[str] = None, components: Optional[Sequence[GetElasticSearchComponentArgs]] = None, elasticsearch: Optional[GetElasticSearchElasticsearchArgs] = None, elasticsearch_user_config: Optional[GetElasticSearchElasticsearchUserConfigArgs] = None, maintenance_window_dow: Optional[str] = None, maintenance_window_time: Optional[str] = None, plan: Optional[str] = None, project: Optional[str] = None, project_vpc_id: Optional[str] = None, service_host: Optional[str] = None, service_integrations: Optional[Sequence[GetElasticSearchServiceIntegrationArgs]] = 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, termination_protection: Optional[bool] = None, opts: Optional[InvokeOptions] = None) -> GetElasticSearchResult
func LookupElasticSearch(ctx *Context, args *LookupElasticSearchArgs, opts ...InvokeOption) (*LookupElasticSearchResult, error)
Note: This function is named
LookupElasticSearch
in the Go SDK.
public static class GetElasticSearch {
public static Task<GetElasticSearchResult> InvokeAsync(GetElasticSearchArgs args, InvokeOptions? opts = null)
}
The following arguments are supported:
- Project string
identifies the project the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- 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.
- 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
,do
google
,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<Get
Elastic Search Component Args> - Elasticsearch
Get
Elastic Search Elasticsearch Args Elasticsearch specific server provided values.
- Elasticsearch
User GetConfig Elastic Search Elasticsearch User Config Args defines Elasticsearch specific additional configuration options. The following configuration options available:
- Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally 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 as shown above 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 Elasticsearch hostname.
- Service
Integrations List<GetElastic Search Service Integration Args> - Service
Password string Password used for connecting to the Elasticsearch service, if applicable.
- Service
Port int Elasticsearch port.
- Service
Type string - Service
Uri string URI for connecting to the Elasticsearch service.
- Service
Username string Username used for connecting to the Elasticsearch service, if applicable.
- State string
Service state.
- Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for 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 the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- 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.
- 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
,do
google
,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
[]Get
Elastic Search Component - Elasticsearch
Get
Elastic Search Elasticsearch Elasticsearch specific server provided values.
- Elasticsearch
User GetConfig Elastic Search Elasticsearch User Config defines Elasticsearch specific additional configuration options. The following configuration options available:
- Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally 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 as shown above 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 Elasticsearch hostname.
- Service
Integrations []GetElastic Search Service Integration - Service
Password string Password used for connecting to the Elasticsearch service, if applicable.
- Service
Port int Elasticsearch port.
- Service
Type string - Service
Uri string URI for connecting to the Elasticsearch service.
- Service
Username string Username used for connecting to the Elasticsearch service, if applicable.
- State string
Service state.
- Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for 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 the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- 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.
- 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
,do
google
,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
Get
Elastic Search Component[] - elasticsearch
Get
Elastic Search Elasticsearch Elasticsearch specific server provided values.
- elasticsearch
User GetConfig Elastic Search Elasticsearch User Config defines Elasticsearch specific additional configuration options. The following configuration options available:
- maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- project
Vpc stringId optionally 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 as shown above 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 Elasticsearch hostname.
- service
Integrations GetElastic Search Service Integration[] - service
Password string Password used for connecting to the Elasticsearch service, if applicable.
- service
Port number Elasticsearch port.
- service
Type string - service
Uri string URI for connecting to the Elasticsearch service.
- service
Username string Username used for connecting to the Elasticsearch service, if applicable.
- state string
Service state.
- termination
Protection boolean prevents the service from being deleted. It is recommended to set this to
true
for 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 the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- 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.
- 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
,do
google
,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[Get
Elastic Search Component Args] - elasticsearch
Get
Elastic Search Elasticsearch Args Elasticsearch specific server provided values.
- elasticsearch_
user_ Getconfig Elastic Search Elasticsearch User Config Args defines Elasticsearch specific additional configuration options. The following configuration options available:
- maintenance_
window_ strdow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- project_
vpc_ strid optionally 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 as shown above 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 Elasticsearch hostname.
- service_
integrations Sequence[GetElastic Search Service Integration Args] - service_
password str Password used for connecting to the Elasticsearch service, if applicable.
- service_
port int Elasticsearch port.
- service_
type str - service_
uri str URI for connecting to the Elasticsearch service.
- service_
username str Username used for connecting to the Elasticsearch service, if applicable.
- state str
Service state.
- termination_
protection bool prevents the service from being deleted. It is recommended to set this to
true
for 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.
getElasticSearch Result
The following output properties are available:
- Components
List<Get
Elastic Search Component> - Elasticsearch
Get
Elastic Search Elasticsearch Elasticsearch specific server provided values.
- Id string
The provider-assigned unique ID for this managed resource.
- Project string
- Service
Host string Elasticsearch hostname.
- Service
Name string - Service
Password string Password used for connecting to the Elasticsearch service, if applicable.
- Service
Port int Elasticsearch port.
- Service
Type string - Service
Uri string URI for connecting to the Elasticsearch service.
- Service
Username string Username used for connecting to the Elasticsearch service, if applicable.
- State string
Service state.
- 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
,do
google
,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.- Elasticsearch
User GetConfig Elastic Search Elasticsearch User Config defines Elasticsearch specific additional configuration options. The following configuration options available:
- Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally 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 as shown above 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<GetElastic Search Service Integration> - Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for 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.
- Components
[]Get
Elastic Search Component - Elasticsearch
Get
Elastic Search Elasticsearch Elasticsearch specific server provided values.
- Id string
The provider-assigned unique ID for this managed resource.
- Project string
- Service
Host string Elasticsearch hostname.
- Service
Name string - Service
Password string Password used for connecting to the Elasticsearch service, if applicable.
- Service
Port int Elasticsearch port.
- Service
Type string - Service
Uri string URI for connecting to the Elasticsearch service.
- Service
Username string Username used for connecting to the Elasticsearch service, if applicable.
- State string
Service state.
- 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
,do
google
,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.- Elasticsearch
User GetConfig Elastic Search Elasticsearch User Config defines Elasticsearch specific additional configuration options. The following configuration options available:
- Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally 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 as shown above 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 []GetElastic Search Service Integration - Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for 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.
- components
Get
Elastic Search Component[] - elasticsearch
Get
Elastic Search Elasticsearch Elasticsearch specific server provided values.
- id string
The provider-assigned unique ID for this managed resource.
- project string
- service
Host string Elasticsearch hostname.
- service
Name string - service
Password string Password used for connecting to the Elasticsearch service, if applicable.
- service
Port number Elasticsearch port.
- service
Type string - service
Uri string URI for connecting to the Elasticsearch service.
- service
Username string Username used for connecting to the Elasticsearch service, if applicable.
- state string
Service state.
- 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
,do
google
,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.- elasticsearch
User GetConfig Elastic Search Elasticsearch User Config defines Elasticsearch specific additional configuration options. The following configuration options available:
- maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- project
Vpc stringId optionally 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 as shown above 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 GetElastic Search Service Integration[] - termination
Protection boolean prevents the service from being deleted. It is recommended to set this to
true
for 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.
- components
Sequence[Get
Elastic Search Component] - elasticsearch
Get
Elastic Search Elasticsearch Elasticsearch specific server provided values.
- id str
The provider-assigned unique ID for this managed resource.
- project str
- service_
host str Elasticsearch hostname.
- service_
name str - service_
password str Password used for connecting to the Elasticsearch service, if applicable.
- service_
port int Elasticsearch port.
- service_
type str - service_
uri str URI for connecting to the Elasticsearch service.
- service_
username str Username used for connecting to the Elasticsearch service, if applicable.
- state str
Service state.
- 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
,do
google
,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.- elasticsearch_
user_ Getconfig Elastic Search Elasticsearch User Config defines Elasticsearch specific additional configuration options. The following configuration options available:
- maintenance_
window_ strdow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- 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-x
andpremium-x
wherex
is (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 exact options can be seen from the Aiven web console’s Create Service dialog.- project_
vpc_ strid optionally 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 as shown above 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[GetElastic Search Service Integration] - termination_
protection bool prevents the service from being deleted. It is recommended to set this to
true
for 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
GetElasticSearchComponent
GetElasticSearchElasticsearch
- Kibana
Uri string URI for Kibana frontend.
- Kibana
Uri string URI for Kibana frontend.
- kibana
Uri string URI for Kibana frontend.
- kibana_
uri str URI for Kibana frontend.
GetElasticSearchElasticsearchUserConfig
- Custom
Domain string Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
- Disable
Replication stringFactor Adjustment Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: setting this to true increases a risk of data loss in case of virtual machine failure.
- Elasticsearch
Get
Elastic Search Elasticsearch User Config Elasticsearch Args Elasticsearch specific server provided values.
- Elasticsearch
Version string Elasticsearch major version.
- Index
Patterns List<GetElastic Search Elasticsearch User Config Index Pattern Args> Glob pattern and number of indexes matching that pattern to be kept.
- Index
Template GetElastic Search Elasticsearch User Config Index Template Args Template settings for all new indexe.
- Ip
Filters List<string> allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Kibana
Get
Elastic Search Elasticsearch User Config Kibana Args Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- Max
Index stringCount Maximum number of indexes to keep before deleting the oldest one.
- Private
Access GetElastic Search Elasticsearch User Config Private Access Args Allow access to selected service ports from private networks.
- 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 GetElastic Search Elasticsearch User Config Public Access Args 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.
- Custom
Domain string Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
- Disable
Replication stringFactor Adjustment Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: setting this to true increases a risk of data loss in case of virtual machine failure.
- Elasticsearch
Get
Elastic Search Elasticsearch User Config Elasticsearch Elasticsearch specific server provided values.
- Elasticsearch
Version string Elasticsearch major version.
- Index
Patterns []GetElastic Search Elasticsearch User Config Index Pattern Glob pattern and number of indexes matching that pattern to be kept.
- Index
Template GetElastic Search Elasticsearch User Config Index Template Template settings for all new indexe.
- Ip
Filters []string allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Kibana
Get
Elastic Search Elasticsearch User Config Kibana Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- Max
Index stringCount Maximum number of indexes to keep before deleting the oldest one.
- Private
Access GetElastic Search Elasticsearch User Config Private Access Allow access to selected service ports from private networks.
- 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 GetElastic Search Elasticsearch 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.
- custom
Domain string Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
- disable
Replication stringFactor Adjustment Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: setting this to true increases a risk of data loss in case of virtual machine failure.
- elasticsearch
Get
Elastic Search Elasticsearch User Config Elasticsearch Elasticsearch specific server provided values.
- elasticsearch
Version string Elasticsearch major version.
- index
Patterns GetElastic Search Elasticsearch User Config Index Pattern[] Glob pattern and number of indexes matching that pattern to be kept.
- index
Template GetElastic Search Elasticsearch User Config Index Template Template settings for all new indexe.
- ip
Filters string[] allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- kibana
Get
Elastic Search Elasticsearch User Config Kibana Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- max
Index stringCount Maximum number of indexes to keep before deleting the oldest one.
- private
Access GetElastic Search Elasticsearch User Config Private Access Allow access to selected service ports from private networks.
- 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 GetElastic Search Elasticsearch 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.
- custom_
domain str Serve the web frontend using a custom CNAME pointing to the Aiven DNS name.
- disable_
replication_ strfactor_ adjustment Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: setting this to true increases a risk of data loss in case of virtual machine failure.
- elasticsearch
Get
Elastic Search Elasticsearch User Config Elasticsearch Args Elasticsearch specific server provided values.
- elasticsearch_
version str Elasticsearch major version.
- index_
patterns Sequence[GetElastic Search Elasticsearch User Config Index Pattern Args] Glob pattern and number of indexes matching that pattern to be kept.
- index_
template GetElastic Search Elasticsearch User Config Index Template Args Template settings for all new indexe.
- ip_
filters Sequence[str] allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- kibana
Get
Elastic Search Elasticsearch User Config Kibana Args Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- max_
index_ strcount Maximum number of indexes to keep before deleting the oldest one.
- private_
access GetElastic Search Elasticsearch User Config Private Access Args Allow access to selected service ports from private networks.
- 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 GetElastic Search Elasticsearch User Config Public Access Args 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.
GetElasticSearchElasticsearchUserConfigElasticsearch
- Action
Auto stringCreate Index Enabled Explicitly allow or block automatic creation of indices. Defaults to true
- Action
Destructive stringRequires Name Require explicit index names when deleting
- Cluster
Max stringShards Per Node Controls the number of shards allowed in the cluster per data node
- Http
Max stringContent Length Maximum content length for HTTP requests to the Elasticsearch HTTP API, in bytes.
- Http
Max stringHeader Size The max size of allowed headers, in bytes.
- Http
Max stringInitial Line Length The max length of an HTTP URL, in bytes.
- Indices
Fielddata stringCache Size Relative amount. Maximum amount of heap memory used for field data cache. This is an expert setting; decreasing the value too much will increase overhead of loading field data; too much memory used for field data cache will decrease amount of heap available for other operations.
- Indices
Memory stringIndex Buffer Size Percentage value. Default is 10%. Total amount of heap used for indexing buffer, before writing segments to disk. This is an expert setting. Too low value will slow down indexing; too high value will increase indexing performance but causes performance issues for query performance.
- Indices
Queries stringCache Size Percentage value. Default is 10%. Maximum amount of heap used for query cache. This is an expert setting. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other Elasticsearch functionality.
- Indices
Query stringBool Max Clause Count Maximum number of clauses Lucene BooleanQuery can have. The default value (1024) is relatively high, and increasing it may cause performance issues. Investigate other approaches first before increasing this value.
- Reindex
Remote List<string>Whitelists Whitelisted addresses for reindexing. Changing this value will cause all Elasticsearch instances to restart.
- Search
Max stringBuckets Maximum number of aggregation buckets allowed in a single response. Elasticsearch default value is used when this is not defined.
- Thread
Pool stringAnalyze Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringAnalyze Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringForce Merge Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringGet Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringGet Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringIndex Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringIndex Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringSearch Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringSearch Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringSearch Throttled Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringSearch Throttled Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringWrite Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringWrite Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Action
Auto stringCreate Index Enabled Explicitly allow or block automatic creation of indices. Defaults to true
- Action
Destructive stringRequires Name Require explicit index names when deleting
- Cluster
Max stringShards Per Node Controls the number of shards allowed in the cluster per data node
- Http
Max stringContent Length Maximum content length for HTTP requests to the Elasticsearch HTTP API, in bytes.
- Http
Max stringHeader Size The max size of allowed headers, in bytes.
- Http
Max stringInitial Line Length The max length of an HTTP URL, in bytes.
- Indices
Fielddata stringCache Size Relative amount. Maximum amount of heap memory used for field data cache. This is an expert setting; decreasing the value too much will increase overhead of loading field data; too much memory used for field data cache will decrease amount of heap available for other operations.
- Indices
Memory stringIndex Buffer Size Percentage value. Default is 10%. Total amount of heap used for indexing buffer, before writing segments to disk. This is an expert setting. Too low value will slow down indexing; too high value will increase indexing performance but causes performance issues for query performance.
- Indices
Queries stringCache Size Percentage value. Default is 10%. Maximum amount of heap used for query cache. This is an expert setting. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other Elasticsearch functionality.
- Indices
Query stringBool Max Clause Count Maximum number of clauses Lucene BooleanQuery can have. The default value (1024) is relatively high, and increasing it may cause performance issues. Investigate other approaches first before increasing this value.
- Reindex
Remote []stringWhitelists Whitelisted addresses for reindexing. Changing this value will cause all Elasticsearch instances to restart.
- Search
Max stringBuckets Maximum number of aggregation buckets allowed in a single response. Elasticsearch default value is used when this is not defined.
- Thread
Pool stringAnalyze Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringAnalyze Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringForce Merge Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringGet Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringGet Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringIndex Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringIndex Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringSearch Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringSearch Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringSearch Throttled Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringSearch Throttled Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- Thread
Pool stringWrite Queue Size Size for the thread pool queue. See documentation for exact details.
- Thread
Pool stringWrite Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- action
Auto stringCreate Index Enabled Explicitly allow or block automatic creation of indices. Defaults to true
- action
Destructive stringRequires Name Require explicit index names when deleting
- cluster
Max stringShards Per Node Controls the number of shards allowed in the cluster per data node
- http
Max stringContent Length Maximum content length for HTTP requests to the Elasticsearch HTTP API, in bytes.
- http
Max stringHeader Size The max size of allowed headers, in bytes.
- http
Max stringInitial Line Length The max length of an HTTP URL, in bytes.
- indices
Fielddata stringCache Size Relative amount. Maximum amount of heap memory used for field data cache. This is an expert setting; decreasing the value too much will increase overhead of loading field data; too much memory used for field data cache will decrease amount of heap available for other operations.
- indices
Memory stringIndex Buffer Size Percentage value. Default is 10%. Total amount of heap used for indexing buffer, before writing segments to disk. This is an expert setting. Too low value will slow down indexing; too high value will increase indexing performance but causes performance issues for query performance.
- indices
Queries stringCache Size Percentage value. Default is 10%. Maximum amount of heap used for query cache. This is an expert setting. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other Elasticsearch functionality.
- indices
Query stringBool Max Clause Count Maximum number of clauses Lucene BooleanQuery can have. The default value (1024) is relatively high, and increasing it may cause performance issues. Investigate other approaches first before increasing this value.
- reindex
Remote string[]Whitelists Whitelisted addresses for reindexing. Changing this value will cause all Elasticsearch instances to restart.
- search
Max stringBuckets Maximum number of aggregation buckets allowed in a single response. Elasticsearch default value is used when this is not defined.
- thread
Pool stringAnalyze Queue Size Size for the thread pool queue. See documentation for exact details.
- thread
Pool stringAnalyze Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread
Pool stringForce Merge Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread
Pool stringGet Queue Size Size for the thread pool queue. See documentation for exact details.
- thread
Pool stringGet Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread
Pool stringIndex Queue Size Size for the thread pool queue. See documentation for exact details.
- thread
Pool stringIndex Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread
Pool stringSearch Queue Size Size for the thread pool queue. See documentation for exact details.
- thread
Pool stringSearch Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread
Pool stringSearch Throttled Queue Size Size for the thread pool queue. See documentation for exact details.
- thread
Pool stringSearch Throttled Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread
Pool stringWrite Queue Size Size for the thread pool queue. See documentation for exact details.
- thread
Pool stringWrite Size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- action_
auto_ strcreate_ index_ enabled Explicitly allow or block automatic creation of indices. Defaults to true
- action_
destructive_ strrequires_ name Require explicit index names when deleting
- cluster_
max_ strshards_ per_ node Controls the number of shards allowed in the cluster per data node
- http_
max_ strcontent_ length Maximum content length for HTTP requests to the Elasticsearch HTTP API, in bytes.
- http_
max_ strheader_ size The max size of allowed headers, in bytes.
- http_
max_ strinitial_ line_ length The max length of an HTTP URL, in bytes.
- indices_
fielddata_ strcache_ size Relative amount. Maximum amount of heap memory used for field data cache. This is an expert setting; decreasing the value too much will increase overhead of loading field data; too much memory used for field data cache will decrease amount of heap available for other operations.
- indices_
memory_ strindex_ buffer_ size Percentage value. Default is 10%. Total amount of heap used for indexing buffer, before writing segments to disk. This is an expert setting. Too low value will slow down indexing; too high value will increase indexing performance but causes performance issues for query performance.
- indices_
queries_ strcache_ size Percentage value. Default is 10%. Maximum amount of heap used for query cache. This is an expert setting. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other Elasticsearch functionality.
- indices_
query_ strbool_ max_ clause_ count Maximum number of clauses Lucene BooleanQuery can have. The default value (1024) is relatively high, and increasing it may cause performance issues. Investigate other approaches first before increasing this value.
- reindex_
remote_ Sequence[str]whitelists Whitelisted addresses for reindexing. Changing this value will cause all Elasticsearch instances to restart.
- search_
max_ strbuckets Maximum number of aggregation buckets allowed in a single response. Elasticsearch default value is used when this is not defined.
- thread_
pool_ stranalyze_ queue_ size Size for the thread pool queue. See documentation for exact details.
- thread_
pool_ stranalyze_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread_
pool_ strforce_ merge_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread_
pool_ strget_ queue_ size Size for the thread pool queue. See documentation for exact details.
- thread_
pool_ strget_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread_
pool_ strindex_ queue_ size Size for the thread pool queue. See documentation for exact details.
- thread_
pool_ strindex_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread_
pool_ strsearch_ queue_ size Size for the thread pool queue. See documentation for exact details.
- thread_
pool_ strsearch_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread_
pool_ strsearch_ throttled_ queue_ size Size for the thread pool queue. See documentation for exact details.
- thread_
pool_ strsearch_ throttled_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
- thread_
pool_ strwrite_ queue_ size Size for the thread pool queue. See documentation for exact details.
- thread_
pool_ strwrite_ size Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
GetElasticSearchElasticsearchUserConfigIndexPattern
- Max
Index stringCount Maximum number of indexes to keep before deleting the oldest one.
- Pattern string
Must consist of alpha-numeric characters, dashes, underscores, dots and glob characters (* and ?)
- Max
Index stringCount Maximum number of indexes to keep before deleting the oldest one.
- Pattern string
Must consist of alpha-numeric characters, dashes, underscores, dots and glob characters (* and ?)
- max
Index stringCount Maximum number of indexes to keep before deleting the oldest one.
- pattern string
Must consist of alpha-numeric characters, dashes, underscores, dots and glob characters (* and ?)
- max_
index_ strcount Maximum number of indexes to keep before deleting the oldest one.
- pattern str
Must consist of alpha-numeric characters, dashes, underscores, dots and glob characters (* and ?)
GetElasticSearchElasticsearchUserConfigIndexTemplate
- Mapping
Nested stringObjects Limit The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000.
- Number
Of stringReplicas The number of replicas each primary shard has.
- Number
Of stringShards The number of primary shards that an index should have.
- Mapping
Nested stringObjects Limit The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000.
- Number
Of stringReplicas The number of replicas each primary shard has.
- Number
Of stringShards The number of primary shards that an index should have.
- mapping
Nested stringObjects Limit The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000.
- number
Of stringReplicas The number of replicas each primary shard has.
- number
Of stringShards The number of primary shards that an index should have.
- mapping_
nested_ strobjects_ limit The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000.
- number_
of_ strreplicas The number of replicas each primary shard has.
- number_
of_ strshards The number of primary shards that an index should have.
GetElasticSearchElasticsearchUserConfigKibana
- Elasticsearch
Request stringTimeout Timeout in milliseconds for requests made by Kibana towards Elasticsearch.
- Enabled string
Enable or disable Kibana.
- Max
Old stringSpace Size Limits the maximum amount of memory (in MiB) the Kibana process can use. This sets the max_old_space_size option of the nodejs running the Kibana. Note: the memory reserved by Kibana is not available for Elasticsearch.
- Elasticsearch
Request stringTimeout Timeout in milliseconds for requests made by Kibana towards Elasticsearch.
- Enabled string
Enable or disable Kibana.
- Max
Old stringSpace Size Limits the maximum amount of memory (in MiB) the Kibana process can use. This sets the max_old_space_size option of the nodejs running the Kibana. Note: the memory reserved by Kibana is not available for Elasticsearch.
- elasticsearch
Request stringTimeout Timeout in milliseconds for requests made by Kibana towards Elasticsearch.
- enabled string
Enable or disable Kibana.
- max
Old stringSpace Size Limits the maximum amount of memory (in MiB) the Kibana process can use. This sets the max_old_space_size option of the nodejs running the Kibana. Note: the memory reserved by Kibana is not available for Elasticsearch.
- elasticsearch_
request_ strtimeout Timeout in milliseconds for requests made by Kibana towards Elasticsearch.
- enabled str
Enable or disable Kibana.
- max_
old_ strspace_ size Limits the maximum amount of memory (in MiB) the Kibana process can use. This sets the max_old_space_size option of the nodejs running the Kibana. Note: the memory reserved by Kibana is not available for Elasticsearch.
GetElasticSearchElasticsearchUserConfigPrivateAccess
- Elasticsearch string
Elasticsearch specific server provided values.
- Kibana string
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- Elasticsearch string
Elasticsearch specific server provided values.
- Kibana string
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- elasticsearch string
Elasticsearch specific server provided values.
- kibana string
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- elasticsearch str
Elasticsearch specific server provided values.
- kibana str
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus str
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
GetElasticSearchElasticsearchUserConfigPublicAccess
- Elasticsearch string
Elasticsearch specific server provided values.
- Kibana string
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- Elasticsearch string
Elasticsearch specific server provided values.
- Kibana string
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- elasticsearch string
Elasticsearch specific server provided values.
- kibana string
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- elasticsearch str
Elasticsearch specific server provided values.
- kibana str
Allow clients to connect to kibana from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus str
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
GetElasticSearchServiceIntegration
- Integration
Type string - Source
Service stringName
- Integration
Type string - Source
Service stringName
- integration
Type string - source
Service stringName
Package Details
- Repository
- https://github.com/pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.