* 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
34 lines
1 KiB
Markdown
34 lines
1 KiB
Markdown
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "stackit_resourcemanager_project Data Source - stackit"
|
|
subcategory: ""
|
|
description: |-
|
|
Resource Manager project data source schema.
|
|
---
|
|
|
|
# stackit_resourcemanager_project (Data Source)
|
|
|
|
Resource Manager project data source schema.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
data "stackit_resourcemanager_project" "example" {
|
|
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
container_id = "example-container-abc123"
|
|
}
|
|
```
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
## Schema
|
|
|
|
### Required
|
|
|
|
- `container_id` (String) Project container ID.
|
|
|
|
### Read-Only
|
|
|
|
- `id` (String) Terraform's internal resource ID. It is structured as "`container_id`".
|
|
- `labels` (Map of String) Labels are key-value string pairs which can be attached to a resource container. A label key must match the regex [A-ZÄÜÖa-zäüöß0-9_-]{1,64}. A label value must match the regex ^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}
|
|
- `name` (String) Project name.
|
|
- `parent_container_id` (String) Parent container ID
|