From 7c1560d5138874b1f1f6b66939afacaa525799bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diogo=20Ferr=C3=A3o?= Date: Tue, 16 Apr 2024 13:41:42 +0100 Subject: [PATCH] update docs (#330) --- docs/data-sources/logme_credential.md | 3 --- docs/data-sources/mariadb_credential.md | 1 - docs/data-sources/opensearch_credential.md | 3 +-- docs/data-sources/rabbitmq_credential.md | 4 +++- docs/data-sources/redis_credential.md | 3 +-- docs/resources/logme_credential.md | 3 --- docs/resources/mariadb_credential.md | 1 - docs/resources/opensearch_credential.md | 3 +-- docs/resources/rabbitmq_credential.md | 4 +++- docs/resources/redis_credential.md | 3 +-- 10 files changed, 10 insertions(+), 18 deletions(-) diff --git a/docs/data-sources/logme_credential.md b/docs/data-sources/logme_credential.md index ec7a33d4..21afd8fb 100644 --- a/docs/data-sources/logme_credential.md +++ b/docs/data-sources/logme_credential.md @@ -32,10 +32,7 @@ data "stackit_logme_credential" "example" { ### Read-Only - `host` (String) -- `hosts` (List of String) -- `http_api_uri` (String) - `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`". -- `name` (String) - `password` (String, Sensitive) - `port` (Number) - `uri` (String) diff --git a/docs/data-sources/mariadb_credential.md b/docs/data-sources/mariadb_credential.md index 3d34459f..b4140ec9 100644 --- a/docs/data-sources/mariadb_credential.md +++ b/docs/data-sources/mariadb_credential.md @@ -33,7 +33,6 @@ data "stackit_mariadb_credential" "example" { - `host` (String) - `hosts` (List of String) -- `http_api_uri` (String) - `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`". - `name` (String) - `password` (String, Sensitive) diff --git a/docs/data-sources/opensearch_credential.md b/docs/data-sources/opensearch_credential.md index f41148b6..bd558041 100644 --- a/docs/data-sources/opensearch_credential.md +++ b/docs/data-sources/opensearch_credential.md @@ -33,10 +33,9 @@ data "stackit_opensearch_credential" "example" { - `host` (String) - `hosts` (List of String) -- `http_api_uri` (String) - `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`". -- `name` (String) - `password` (String, Sensitive) - `port` (Number) +- `scheme` (String) - `uri` (String) - `username` (String) diff --git a/docs/data-sources/rabbitmq_credential.md b/docs/data-sources/rabbitmq_credential.md index 3de542c7..7d31de79 100644 --- a/docs/data-sources/rabbitmq_credential.md +++ b/docs/data-sources/rabbitmq_credential.md @@ -34,9 +34,11 @@ data "stackit_rabbitmq_credential" "example" { - `host` (String) - `hosts` (List of String) - `http_api_uri` (String) +- `http_api_uris` (List of String) - `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`". -- `name` (String) +- `management` (String) - `password` (String, Sensitive) - `port` (Number) - `uri` (String) +- `uris` (List of String) - `username` (String) diff --git a/docs/data-sources/redis_credential.md b/docs/data-sources/redis_credential.md index df29d3e8..7d550469 100644 --- a/docs/data-sources/redis_credential.md +++ b/docs/data-sources/redis_credential.md @@ -33,9 +33,8 @@ data "stackit_redis_credential" "example" { - `host` (String) - `hosts` (List of String) -- `http_api_uri` (String) - `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`". -- `name` (String) +- `load_balanced_host` (String) - `password` (String, Sensitive) - `port` (Number) - `uri` (String) Connection URI. Currently the returned uri doesn't support SSL, but you can enable it by using `rediss://` instead of `redis://`. We will provide the SSL connection in a future release diff --git a/docs/resources/logme_credential.md b/docs/resources/logme_credential.md index 8f60b8f6..62259114 100644 --- a/docs/resources/logme_credential.md +++ b/docs/resources/logme_credential.md @@ -31,10 +31,7 @@ resource "stackit_logme_credential" "example" { - `credential_id` (String) The credential's 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`,`credential_id`". -- `name` (String) - `password` (String, Sensitive) - `port` (Number) - `uri` (String) diff --git a/docs/resources/mariadb_credential.md b/docs/resources/mariadb_credential.md index e9cb27d3..11b95026 100644 --- a/docs/resources/mariadb_credential.md +++ b/docs/resources/mariadb_credential.md @@ -32,7 +32,6 @@ resource "stackit_mariadb_credential" "example" { - `credential_id` (String) The credential's 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`,`credential_id`". - `name` (String) - `password` (String, Sensitive) diff --git a/docs/resources/opensearch_credential.md b/docs/resources/opensearch_credential.md index 011016bb..afd9ee6b 100644 --- a/docs/resources/opensearch_credential.md +++ b/docs/resources/opensearch_credential.md @@ -32,10 +32,9 @@ resource "stackit_opensearch_credential" "example" { - `credential_id` (String) The credential's 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`,`credential_id`". -- `name` (String) - `password` (String, Sensitive) - `port` (Number) +- `scheme` (String) - `uri` (String) - `username` (String) diff --git a/docs/resources/rabbitmq_credential.md b/docs/resources/rabbitmq_credential.md index 4f4f928d..f975ca00 100644 --- a/docs/resources/rabbitmq_credential.md +++ b/docs/resources/rabbitmq_credential.md @@ -33,9 +33,11 @@ resource "stackit_rabbitmq_credential" "example" { - `host` (String) - `hosts` (List of String) - `http_api_uri` (String) +- `http_api_uris` (List of String) - `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credential_id`". -- `name` (String) +- `management` (String) - `password` (String, Sensitive) - `port` (Number) - `uri` (String) +- `uris` (List of String) - `username` (String) diff --git a/docs/resources/redis_credential.md b/docs/resources/redis_credential.md index 72221130..2480124f 100644 --- a/docs/resources/redis_credential.md +++ b/docs/resources/redis_credential.md @@ -32,9 +32,8 @@ resource "stackit_redis_credential" "example" { - `credential_id` (String) The credential's 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`,`credential_id`". -- `name` (String) +- `load_balanced_host` (String) - `password` (String, Sensitive) - `port` (Number) - `uri` (String) Connection URI. Currently the returned uri doesn't support SSL, but you can enable it by using `rediss://` instead of `redis://`. We will provide the SSL connection in a future release