Skip to content

Commit 7c1560d

Browse files
authored
update docs (#330)
1 parent 9bd1da7 commit 7c1560d

10 files changed

Lines changed: 10 additions & 18 deletions

docs/data-sources/logme_credential.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ data "stackit_logme_credential" "example" {
3232
### Read-Only
3333

3434
- `host` (String)
35-
- `hosts` (List of String)
36-
- `http_api_uri` (String)
3735
- `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
38-
- `name` (String)
3936
- `password` (String, Sensitive)
4037
- `port` (Number)
4138
- `uri` (String)

docs/data-sources/mariadb_credential.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ data "stackit_mariadb_credential" "example" {
3333

3434
- `host` (String)
3535
- `hosts` (List of String)
36-
- `http_api_uri` (String)
3736
- `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
3837
- `name` (String)
3938
- `password` (String, Sensitive)

docs/data-sources/opensearch_credential.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,9 @@ data "stackit_opensearch_credential" "example" {
3333

3434
- `host` (String)
3535
- `hosts` (List of String)
36-
- `http_api_uri` (String)
3736
- `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
38-
- `name` (String)
3937
- `password` (String, Sensitive)
4038
- `port` (Number)
39+
- `scheme` (String)
4140
- `uri` (String)
4241
- `username` (String)

docs/data-sources/rabbitmq_credential.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ data "stackit_rabbitmq_credential" "example" {
3434
- `host` (String)
3535
- `hosts` (List of String)
3636
- `http_api_uri` (String)
37+
- `http_api_uris` (List of String)
3738
- `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
38-
- `name` (String)
39+
- `management` (String)
3940
- `password` (String, Sensitive)
4041
- `port` (Number)
4142
- `uri` (String)
43+
- `uris` (List of String)
4244
- `username` (String)

docs/data-sources/redis_credential.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ data "stackit_redis_credential" "example" {
3333

3434
- `host` (String)
3535
- `hosts` (List of String)
36-
- `http_api_uri` (String)
3736
- `id` (String) Terraform's internal data source. identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
38-
- `name` (String)
37+
- `load_balanced_host` (String)
3938
- `password` (String, Sensitive)
4039
- `port` (Number)
4140
- `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

docs/resources/logme_credential.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ resource "stackit_logme_credential" "example" {
3131

3232
- `credential_id` (String) The credential's ID.
3333
- `host` (String)
34-
- `hosts` (List of String)
35-
- `http_api_uri` (String)
3634
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
37-
- `name` (String)
3835
- `password` (String, Sensitive)
3936
- `port` (Number)
4037
- `uri` (String)

docs/resources/mariadb_credential.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ resource "stackit_mariadb_credential" "example" {
3232
- `credential_id` (String) The credential's ID.
3333
- `host` (String)
3434
- `hosts` (List of String)
35-
- `http_api_uri` (String)
3635
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
3736
- `name` (String)
3837
- `password` (String, Sensitive)

docs/resources/opensearch_credential.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ resource "stackit_opensearch_credential" "example" {
3232
- `credential_id` (String) The credential's ID.
3333
- `host` (String)
3434
- `hosts` (List of String)
35-
- `http_api_uri` (String)
3635
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
37-
- `name` (String)
3836
- `password` (String, Sensitive)
3937
- `port` (Number)
38+
- `scheme` (String)
4039
- `uri` (String)
4140
- `username` (String)

docs/resources/rabbitmq_credential.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ resource "stackit_rabbitmq_credential" "example" {
3333
- `host` (String)
3434
- `hosts` (List of String)
3535
- `http_api_uri` (String)
36+
- `http_api_uris` (List of String)
3637
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
37-
- `name` (String)
38+
- `management` (String)
3839
- `password` (String, Sensitive)
3940
- `port` (Number)
4041
- `uri` (String)
42+
- `uris` (List of String)
4143
- `username` (String)

docs/resources/redis_credential.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ resource "stackit_redis_credential" "example" {
3232
- `credential_id` (String) The credential's ID.
3333
- `host` (String)
3434
- `hosts` (List of String)
35-
- `http_api_uri` (String)
3635
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`instance_id`,`credential_id`".
37-
- `name` (String)
36+
- `load_balanced_host` (String)
3837
- `password` (String, Sensitive)
3938
- `port` (Number)
4039
- `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

0 commit comments

Comments
 (0)