* Add internal ID structure to DSA instance descriptions * Add internal ID structure to DSA credential descriptions * Add internal ID structure to Argus descriptions * Add internal ID structure to DNS descriptions * Add internal ID structure to PostgresFlex descriptions * Add internal ID structure to ResourceManager descriptions * Add internal ID structure to SKE descriptions * Generate updated docs * Add first basis for migration guide
41 lines
1 KiB
Markdown
41 lines
1 KiB
Markdown
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "stackit_postgresql_credentials Resource - stackit"
|
|
subcategory: ""
|
|
description: |-
|
|
PostgreSQL credentials resource schema.
|
|
---
|
|
|
|
# stackit_postgresql_credentials (Resource)
|
|
|
|
PostgreSQL credentials resource schema.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
resource "stackit_postgresql_credentials" "example" {
|
|
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
}
|
|
```
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
## Schema
|
|
|
|
### Required
|
|
|
|
- `instance_id` (String) ID of the PostgreSQL instance.
|
|
- `project_id` (String) STACKIT Project ID to which the instance is associated.
|
|
|
|
### Read-Only
|
|
|
|
- `credentials_id` (String) The credentials ID.
|
|
- `host` (String)
|
|
- `hosts` (List of String)
|
|
- `http_api_uri` (String)
|
|
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credentials_id`".
|
|
- `name` (String)
|
|
- `password` (String, Sensitive)
|
|
- `port` (Number)
|
|
- `uri` (String)
|
|
- `username` (String)
|