* Remove ssl note from redis credential * Mark uri as sensitive, change deprecation note of ske project * Update date
39 lines
1.1 KiB
Markdown
39 lines
1.1 KiB
Markdown
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "stackit_logme_credential Data Source - stackit"
|
|
subcategory: ""
|
|
description: |-
|
|
LogMe credential data source schema. Must have a region specified in the provider configuration.
|
|
---
|
|
|
|
# stackit_logme_credential (Data Source)
|
|
|
|
LogMe credential data source schema. Must have a `region` specified in the provider configuration.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
data "stackit_logme_credential" "example" {
|
|
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
credential_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
}
|
|
```
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
## Schema
|
|
|
|
### Required
|
|
|
|
- `credential_id` (String) The credential's ID.
|
|
- `instance_id` (String) ID of the LogMe instance.
|
|
- `project_id` (String) STACKIT project ID to which the instance is associated.
|
|
|
|
### Read-Only
|
|
|
|
- `host` (String)
|
|
- `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
|
|
- `password` (String, Sensitive)
|
|
- `port` (Number)
|
|
- `uri` (String, Sensitive)
|
|
- `username` (String)
|