Google AlloyDB
Google Cloud AlloyDB is a fully managed, high-performance PostgreSQL-compatible database service. It offers low-latency, automatic scaling, and integrates with Google Cloud’s AI/ML tools, making
Example Usage
resource "apono_integration" "gcp-alloydb-integration" {
name = "Google AlloyDB"
type = "gcp-alloydb"
connector_id = "apono-connector-id"
connected_resource_types = ["gcp-alloydb-database"]
metadata = {
auth_type = "<Auth Type>"
gcp_project_id = "<Project ID>"
gcp_region = "<Location>"
gcp_alloydb_cluster = "<Cluster ID>"
gcp_instance_id = "<Primary Instance ID>"
port = "<Port>"
dbname = "<Database Name>"
sslmode = "<SSL Mode>"
credentials_rotation_period_in_days = "<Credentials rotation period (in days)>"
credentials_cleanup_period_in_days = "<User cleanup after access is revoked (in days)>"
}
gcp_secret = {
project = "project_template_value"
secret_id = "gcp_secret_id_template_value"
}
}
Schema
type
gcp-alloydbconnected_resource_types
List of resource types to sync.
Integration Config
auth_type
(Required | String) Auth TypePossible values: gcp-alloydb-iam-auth, user-password
gcp_project_id
(Required | String) Project IDgcp_region
(Required | String) Locationgcp_alloydb_cluster
(Required | String) Cluster IDgcp_instance_id
(Required | String) Primary Instance IDport
(Required | String) PortDefault value:
5432
dbname
(Required | String) Database NameDefault value:
postgres
sslmode
(Optional | String) SSL ModePossible values: disable, allow, prefer, require, verify-ca, verify-full
credentials_rotation_period_in_days
(Optional | String) Credentials rotation period (in days)credentials_cleanup_period_in_days
(Optional | String) User cleanup after access is revoked (in days)
Last updated
Was this helpful?