-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from MagaluCloud/update-files-32bce8256b1ee73e…
…136550c28be7945be73d1ab7 Update files from source repository
- Loading branch information
Showing
30 changed files
with
687 additions
and
565 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_availability_zones Data Source - terraform-provider-mgc" | ||
subcategory: "Availability Zones" | ||
description: |- | ||
List of available regions and availability zones. | ||
--- | ||
|
||
# mgc_availability_zones (Data Source) | ||
|
||
List of available regions and availability zones. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "mgc_availability_zones" "availability_zones" { | ||
} | ||
output "availability_zones" { | ||
value = data.mgc_availability_zones.availability_zones.regions | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `regions` (Attributes List) (see [below for nested schema](#nestedatt--regions)) | ||
|
||
<a id="nestedatt--regions"></a> | ||
### Nested Schema for `regions` | ||
|
||
Read-Only: | ||
|
||
- `availability_zones` (Attributes List) (see [below for nested schema](#nestedatt--regions--availability_zones)) | ||
- `region` (String) | ||
|
||
<a id="nestedatt--regions--availability_zones"></a> | ||
### Nested Schema for `regions.availability_zones` | ||
|
||
Optional: | ||
|
||
- `block_type` (String) | ||
|
||
Read-Only: | ||
|
||
- `availability_zone` (String) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_container_credentials Data Source - terraform-provider-mgc" | ||
subcategory: "Container Registry" | ||
description: |- | ||
Credentials for Container Registry authentication | ||
--- | ||
|
||
# mgc_container_credentials (Data Source) | ||
|
||
Credentials for Container Registry authentication | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "mgc_container_credentials" "creds"{ | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `email` (String) Email address for the credentials | ||
- `password` (String, Sensitive) Password for authentication | ||
- `username` (String) Username for authentication |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_container_images Data Source - terraform-provider-mgc" | ||
subcategory: "Container Registry" | ||
description: |- | ||
Data source for Container Registry Images | ||
--- | ||
|
||
# mgc_container_images (Data Source) | ||
|
||
Data source for Container Registry Images | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "mgc_container_images" "image"{ | ||
registry_id = mgc_container_registries.registry.id | ||
repository_name = "alohomora" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `registry_id` (String) ID of the registry | ||
- `repository_name` (String) Name of the repository | ||
|
||
### Read-Only | ||
|
||
- `images` (Attributes List) List of container images (see [below for nested schema](#nestedatt--images)) | ||
|
||
<a id="nestedatt--images"></a> | ||
### Nested Schema for `images` | ||
|
||
Read-Only: | ||
|
||
- `digest` (String) The digest hash of the image | ||
- `pullet_at` (String) The timestamp when the image was last pulled | ||
- `pushed_at` (String) The timestamp when the image was pushed | ||
- `size_bytes` (Number) The size of the image in bytes | ||
- `tags` (List of String) List of tags associated with the image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_container_registries Data Source - terraform-provider-mgc" | ||
subcategory: "Container Registry" | ||
description: |- | ||
Data source for Container Registry lists | ||
--- | ||
|
||
# mgc_container_registries (Data Source) | ||
|
||
Data source for Container Registry lists | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "mgc_container_registries" "registry"{ | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `registries` (Attributes List) List of container registries (see [below for nested schema](#nestedatt--registries)) | ||
|
||
<a id="nestedatt--registries"></a> | ||
### Nested Schema for `registries` | ||
|
||
Read-Only: | ||
|
||
- `created_at` (String) The timestamp when the registry was created | ||
- `id` (String) The unique identifier of the registry | ||
- `name` (String) The name of the registry | ||
- `storage_usage_bytes` (Number) The storage usage in bytes | ||
- `updated_at` (String) The timestamp when the registry was last updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_container_repositories Data Source - terraform-provider-mgc" | ||
subcategory: "Container Registry" | ||
description: |- | ||
Data source for Container Registry Repositories | ||
--- | ||
|
||
# mgc_container_repositories (Data Source) | ||
|
||
Data source for Container Registry Repositories | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "mgc_container_repositories" "repository"{ | ||
registry_id = mgc_container_registries.registry.id | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `registry_id` (String) ID of the registry | ||
|
||
### Read-Only | ||
|
||
- `repositories` (Attributes List) List of container repositories (see [below for nested schema](#nestedatt--repositories)) | ||
|
||
<a id="nestedatt--repositories"></a> | ||
### Nested Schema for `repositories` | ||
|
||
Read-Only: | ||
|
||
- `created_at` (String) The timestamp when the repository was created | ||
- `image_count` (Number) The number of images in the repository | ||
- `name` (String) The name of the repository | ||
- `registry_name` (String) The name of the registry containing this repository | ||
- `updated_at` (String) The timestamp when the repository was last updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_dbaas_engines Data Source - terraform-provider-mgc" | ||
subcategory: "Database" | ||
description: |- | ||
A list of available database engines. | ||
--- | ||
|
||
# mgc_dbaas_engines (Data Source) | ||
|
||
A list of available database engines. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Data sources | ||
data "mgc_dbaas_engines" "active_engines" { | ||
status = "ACTIVE" | ||
} | ||
data "mgc_dbaas_engines" "deprecated_engines" { | ||
status = "DEPRECATED" | ||
} | ||
data "mgc_dbaas_engines" "all_engines" {} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `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. | ||
|
||
### Read-Only | ||
|
||
- `engines` (Attributes List) List of available database engines (see [below for nested schema](#nestedatt--engines)) | ||
|
||
<a id="nestedatt--engines"></a> | ||
### Nested Schema for `engines` | ||
|
||
Read-Only: | ||
|
||
- `engine` (String) The type of the database engine | ||
- `id` (String) The ID of the database engine | ||
- `name` (String) The name of the database engine | ||
- `status` (String) The status of the database engine | ||
- `version` (String) The version of the database engine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mgc_dbaas_instance Data Source - terraform-provider-mgc" | ||
subcategory: "Database" | ||
description: |- | ||
Get a database instance by ID. | ||
--- | ||
|
||
# mgc_dbaas_instance (Data Source) | ||
|
||
Get a database instance by ID. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "mgc_dbaas_instance" "test_instance" { | ||
id = "test_instance_id" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) ID of the instance to fetch | ||
|
||
### Read-Only | ||
|
||
- `addresses` (Attributes List) List of instance addresses (see [below for nested schema](#nestedatt--addresses)) | ||
- `backup_retention_days` (Number) Number of days to retain backups | ||
- `created_at` (String) Creation timestamp of the instance | ||
- `engine_id` (String) ID of the engine | ||
- `instance_type_id` (String) ID of the instance type | ||
- `name` (String) Name of the instance | ||
- `parameters` (Map of String) Map of parameters | ||
- `status` (String) Status of the instance | ||
- `volume_size` (Number) Size of the volume | ||
- `volume_type` (String) Type of the volume | ||
|
||
<a id="nestedatt--addresses"></a> | ||
### Nested Schema for `addresses` | ||
|
||
Read-Only: | ||
|
||
- `access` (String) Access type of the address | ||
- `address` (String) IP address | ||
- `type` (String) Type of the address |
Oops, something went wrong.