frostmoln_database_engines (Data Source)
Lists all available database engines and their versions for managed database instances.
Example Usage
terraform
data "frostmoln_database_engines" "available" {}
output "supported_engines" {
value = data.frostmoln_database_engines.available.engines
}Schema
Read-Only
engines(Attributes List) The list of available database engines. (see below for nested schema)
Nested Schema for engines
Read-Only:
engine(String) The engine name (e.g. "postgresql", "mysql").versions(Attributes List) The supported versions for this engine. (see below for nested schema)
Nested Schema for engines.versions
Read-Only:
end_of_life(String) The end-of-life date for this version.is_default(Boolean) Whether this is the recommended default version.status(String) The version lifecycle status (current/supported/deprecated/eol/innovation).version(String) The version string (e.g. "16").