* Add examples, update docs * Fix typo --------- Co-authored-by: Henrique Santos <henrique.santos@freiheit.com>
34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "stackit_secretsmanager_instance Data Source - stackit"
|
|
subcategory: ""
|
|
description: |-
|
|
Secrets Manager instance data source schema. Must have a region specified in the provider configuration.
|
|
---
|
|
|
|
# stackit_secretsmanager_instance (Data Source)
|
|
|
|
Secrets Manager instance data source schema. Must have a `region` specified in the provider configuration.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
data "stackit_secretsmanager_instance" "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 Secrets Manager instance.
|
|
- `project_id` (String) STACKIT project ID to which the instance is associated.
|
|
|
|
### Read-Only
|
|
|
|
- `acls` (Set of String) The access control list for this instance. Each entry is an IP or IP range that is permitted to access, in CIDR notation
|
|
- `id` (String) Terraform's internal resource ID. It is structured as "`project_id`,`instance_id`".
|
|
- `name` (String) Instance name.
|