You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@ The provider is currently under development, so new Magalu Cloud resources will
17
17
- You can contribute to an [open issue](https://github.com/MagaluCloud/terraform-provider-mgc/issues) to report a bug or suggest improvements and new features
18
18
- You can open tópic in our [Dicussions Forum](https://github.com/MagaluCloud/terraform-provider-mgc/discussions)
19
19
- See our roadmap in [projects](https://github.com/orgs/MagaluCloud/projects/2/views/7)
20
-
- For the time being, the source code is on our [monorepo](https://github.com/MagaluCloud/magalu) (separation in progress).
# generated by https://github.com/hashicorp/terraform-plugin-docs
3
+
page_title: "mgc_dbaas_engines Data Source - terraform-provider-mgc"
4
+
subcategory: "Database"
5
+
description: |-
6
+
A list of available database engines.
7
+
---
8
+
9
+
# mgc_dbaas_engines (Data Source)
10
+
11
+
A list of available database engines.
12
+
13
+
## Example Usage
14
+
15
+
```terraform
16
+
# Data sources
17
+
data "mgc_dbaas_engines" "active_engines" {
18
+
status = "ACTIVE"
19
+
}
20
+
21
+
data "mgc_dbaas_engines" "deprecated_engines" {
22
+
status = "DEPRECATED"
23
+
}
24
+
25
+
data "mgc_dbaas_engines" "all_engines" {}
26
+
```
27
+
28
+
<!-- schema generated by tfplugindocs -->
29
+
## Schema
30
+
31
+
### Optional
32
+
33
+
-`status` (String) Filter to return engines based on their status. If set to ACTIVE, returns only active engines. If set to DEPRECATED, returns only deprecated engines.
34
+
35
+
### Read-Only
36
+
37
+
-`engines` (Attributes List) List of available database engines (see [below for nested schema](#nestedatt--engines))
38
+
39
+
<aid="nestedatt--engines"></a>
40
+
### Nested Schema for `engines`
41
+
42
+
Read-Only:
43
+
44
+
-`engine` (String) The type of the database engine
45
+
-`id` (String) The ID of the database engine
46
+
-`name` (String) The name of the database engine
47
+
-`status` (String) The status of the database engine
48
+
-`version` (String) The version of the database engine
0 commit comments