getInfluxDb
# InfluxDB Data Source
The InfluxDB data source provides information about the existing Aiven InfluxDB service.
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var inf1 = Output.Create(Aiven.GetInfluxDb.InvokeAsync(new Aiven.GetInfluxDbArgs
{
Project = data.Aiven_project.Pr1.Project,
ServiceName = "my-inf1",
}));
}
}
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.LookupInfluxDb(ctx, &aiven.LookupInfluxDbArgs{
Project: data.Aiven_project.Pr1.Project,
ServiceName: "my-inf1",
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_aiven as aiven
inf1 = aiven.get_influx_db(project=data["aiven_project"]["pr1"]["project"],
service_name="my-inf1")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const inf1 = aiven.getInfluxDb({
project: data.aiven_project.pr1.project,
serviceName: "my-inf1",
});
Using getInfluxDb
function getInfluxDb(args: GetInfluxDbArgs, opts?: InvokeOptions): Promise<GetInfluxDbResult>
def get_influx_db(cloud_name: Optional[str] = None, components: Optional[Sequence[GetInfluxDbComponentArgs]] = None, influxdb: Optional[GetInfluxDbInfluxdbArgs] = None, influxdb_user_config: Optional[GetInfluxDbInfluxdbUserConfigArgs] = 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[GetInfluxDbServiceIntegrationArgs]] = 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) -> GetInfluxDbResult
func LookupInfluxDb(ctx *Context, args *LookupInfluxDbArgs, opts ...InvokeOption) (*LookupInfluxDbResult, error)
Note: This function is named
LookupInfluxDb
in the Go SDK.
public static class GetInfluxDb {
public static Task<GetInfluxDbResult> InvokeAsync(GetInfluxDbArgs 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
Influx Db Component Args> - Influxdb
Get
Influx Db Influxdb Args InfluxDB specific server provided values.
- Influxdb
User GetConfig Influx Db Influxdb User Config Args defines InfluxDB 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 InfluxDB hostname.
- Service
Integrations List<GetInflux Db Service Integration Args> - Service
Password string Password used for connecting to the InfluxDB service, if applicable.
- Service
Port int InfluxDB port.
- Service
Type string - Service
Uri string URI for connecting to the InfluxDB service.
- Service
Username string Username used for connecting to the InfluxDB 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
Influx Db Component - Influxdb
Get
Influx Db Influxdb InfluxDB specific server provided values.
- Influxdb
User GetConfig Influx Db Influxdb User Config defines InfluxDB 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 InfluxDB hostname.
- Service
Integrations []GetInflux Db Service Integration - Service
Password string Password used for connecting to the InfluxDB service, if applicable.
- Service
Port int InfluxDB port.
- Service
Type string - Service
Uri string URI for connecting to the InfluxDB service.
- Service
Username string Username used for connecting to the InfluxDB 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
Influx Db Component[] - influxdb
Get
Influx Db Influxdb InfluxDB specific server provided values.
- influxdb
User GetConfig Influx Db Influxdb User Config defines InfluxDB 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 InfluxDB hostname.
- service
Integrations GetInflux Db Service Integration[] - service
Password string Password used for connecting to the InfluxDB service, if applicable.
- service
Port number InfluxDB port.
- service
Type string - service
Uri string URI for connecting to the InfluxDB service.
- service
Username string Username used for connecting to the InfluxDB 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
Influx Db Component Args] - influxdb
Get
Influx Db Influxdb Args InfluxDB specific server provided values.
- influxdb_
user_ Getconfig Influx Db Influxdb User Config Args defines InfluxDB 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 InfluxDB hostname.
- service_
integrations Sequence[GetInflux Db Service Integration Args] - service_
password str Password used for connecting to the InfluxDB service, if applicable.
- service_
port int InfluxDB port.
- service_
type str - service_
uri str URI for connecting to the InfluxDB service.
- service_
username str Username used for connecting to the InfluxDB 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.
getInfluxDb Result
The following output properties are available:
- Components
List<Get
Influx Db Component> - Id string
The provider-assigned unique ID for this managed resource.
- Influxdb
Get
Influx Db Influxdb InfluxDB specific server provided values.
- Project string
- Service
Host string InfluxDB hostname.
- Service
Name string - Service
Password string Password used for connecting to the InfluxDB service, if applicable.
- Service
Port int InfluxDB port.
- Service
Type string - Service
Uri string URI for connecting to the InfluxDB service.
- Service
Username string Username used for connecting to the InfluxDB 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.- Influxdb
User GetConfig Influx Db Influxdb User Config defines InfluxDB 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<GetInflux Db 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
Influx Db Component - Id string
The provider-assigned unique ID for this managed resource.
- Influxdb
Get
Influx Db Influxdb InfluxDB specific server provided values.
- Project string
- Service
Host string InfluxDB hostname.
- Service
Name string - Service
Password string Password used for connecting to the InfluxDB service, if applicable.
- Service
Port int InfluxDB port.
- Service
Type string - Service
Uri string URI for connecting to the InfluxDB service.
- Service
Username string Username used for connecting to the InfluxDB 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.- Influxdb
User GetConfig Influx Db Influxdb User Config defines InfluxDB 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 []GetInflux Db 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
Influx Db Component[] - id string
The provider-assigned unique ID for this managed resource.
- influxdb
Get
Influx Db Influxdb InfluxDB specific server provided values.
- project string
- service
Host string InfluxDB hostname.
- service
Name string - service
Password string Password used for connecting to the InfluxDB service, if applicable.
- service
Port number InfluxDB port.
- service
Type string - service
Uri string URI for connecting to the InfluxDB service.
- service
Username string Username used for connecting to the InfluxDB 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.- influxdb
User GetConfig Influx Db Influxdb User Config defines InfluxDB 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 GetInflux Db 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
Influx Db Component] - id str
The provider-assigned unique ID for this managed resource.
- influxdb
Get
Influx Db Influxdb InfluxDB specific server provided values.
- project str
- service_
host str InfluxDB hostname.
- service_
name str - service_
password str Password used for connecting to the InfluxDB service, if applicable.
- service_
port int InfluxDB port.
- service_
type str - service_
uri str URI for connecting to the InfluxDB service.
- service_
username str Username used for connecting to the InfluxDB 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.- influxdb_
user_ Getconfig Influx Db Influxdb User Config defines InfluxDB 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[GetInflux Db 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
GetInfluxDbComponent
GetInfluxDbInfluxdb
- Database
Name string
- Database
Name string
- database
Name string
- database_
name str
GetInfluxDbInfluxdbUserConfig
- Custom
Domain string Serve the web frontend using a custom CNAME pointing to the Aiven DNS name
- Influxdb
Get
Influx Db Influxdb User Config Influxdb Args InfluxDB specific server provided values.
- Ip
Filters List<string> allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Private
Access GetInflux Db Influxdb 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 GetInflux Db Influxdb 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
- Influxdb
Get
Influx Db Influxdb User Config Influxdb InfluxDB specific server provided values.
- Ip
Filters []string allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Private
Access GetInflux Db Influxdb 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 GetInflux Db Influxdb 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
- influxdb
Get
Influx Db Influxdb User Config Influxdb InfluxDB specific server provided values.
- ip
Filters string[] allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- private
Access GetInflux Db Influxdb 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 GetInflux Db Influxdb 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
- influxdb
Get
Influx Db Influxdb User Config Influxdb Args InfluxDB specific server provided values.
- ip_
filters Sequence[str] allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- private_
access GetInflux Db Influxdb 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 GetInflux Db Influxdb 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.
GetInfluxDbInfluxdbUserConfigInfluxdb
- Log
Queries stringAfter The maximum duration in seconds before a query is logged as a slow query. Setting this to 0 (the default) will never log slow queries.
- Max
Row stringLimit The maximum number of rows returned in a non-chunked query. Setting this to 0 (the default) allows an unlimited number to be returned.
- Max
Select stringBuckets The maximum number of
GROUP BY time()
buckets that can be processed in a query. Setting this to 0 (the default) allows an unlimited number to be processed.- Max
Select stringPoint The maximum number of points that can be processed in a SELECT statement. Setting this to 0 (the default) allows an unlimited number to be processed.
- Query
Timeout string The maximum duration in seconds before a query is killed. Setting this to 0 (the default) will never kill slow queries.
- Log
Queries stringAfter The maximum duration in seconds before a query is logged as a slow query. Setting this to 0 (the default) will never log slow queries.
- Max
Row stringLimit The maximum number of rows returned in a non-chunked query. Setting this to 0 (the default) allows an unlimited number to be returned.
- Max
Select stringBuckets The maximum number of
GROUP BY time()
buckets that can be processed in a query. Setting this to 0 (the default) allows an unlimited number to be processed.- Max
Select stringPoint The maximum number of points that can be processed in a SELECT statement. Setting this to 0 (the default) allows an unlimited number to be processed.
- Query
Timeout string The maximum duration in seconds before a query is killed. Setting this to 0 (the default) will never kill slow queries.
- log
Queries stringAfter The maximum duration in seconds before a query is logged as a slow query. Setting this to 0 (the default) will never log slow queries.
- max
Row stringLimit The maximum number of rows returned in a non-chunked query. Setting this to 0 (the default) allows an unlimited number to be returned.
- max
Select stringBuckets The maximum number of
GROUP BY time()
buckets that can be processed in a query. Setting this to 0 (the default) allows an unlimited number to be processed.- max
Select stringPoint The maximum number of points that can be processed in a SELECT statement. Setting this to 0 (the default) allows an unlimited number to be processed.
- query
Timeout string The maximum duration in seconds before a query is killed. Setting this to 0 (the default) will never kill slow queries.
- log_
queries_ strafter The maximum duration in seconds before a query is logged as a slow query. Setting this to 0 (the default) will never log slow queries.
- max_
row_ strlimit The maximum number of rows returned in a non-chunked query. Setting this to 0 (the default) allows an unlimited number to be returned.
- max_
select_ strbuckets The maximum number of
GROUP BY time()
buckets that can be processed in a query. Setting this to 0 (the default) allows an unlimited number to be processed.- max_
select_ strpoint The maximum number of points that can be processed in a SELECT statement. Setting this to 0 (the default) allows an unlimited number to be processed.
- query_
timeout str The maximum duration in seconds before a query is killed. Setting this to 0 (the default) will never kill slow queries.
GetInfluxDbInfluxdbUserConfigPrivateAccess
- Influxdb string
InfluxDB specific server provided values.
- Influxdb string
InfluxDB specific server provided values.
- influxdb string
InfluxDB specific server provided values.
- influxdb str
InfluxDB specific server provided values.
GetInfluxDbInfluxdbUserConfigPublicAccess
- Influxdb string
InfluxDB specific server provided values.
- Influxdb string
InfluxDB specific server provided values.
- influxdb string
InfluxDB specific server provided values.
- influxdb str
InfluxDB specific server provided values.
GetInfluxDbServiceIntegration
- 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.