terraform-provider-stackitp.../docs/resources/resourcemanager_project.md
Vicente Pinto 62b6a1b3de
Support project UUID identifier in resource manager project (#161)
* Add projectId to resource manager project, fix value conversion error

* Support both uuid and container id, update acceptance tests

* Update docs

* Fix unit tests

* Adapt acc test names
2023-12-13 14:17:28 +00:00

1.8 KiB

page_title subcategory description
stackit_resourcemanager_project Resource - stackit Resource Manager project resource schema. To use this resource, it is required that you set the service account email in the provider configuration.

stackit_resourcemanager_project (Resource)

Resource Manager project resource schema. To use this resource, it is required that you set the service account email in the provider configuration.

Example Usage

resource "stackit_resourcemanager_project" "example" {
  project_id          = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  parent_container_id = "example-parent-container-abc123"
  name                = "example-container"
  labels = {
    "Label 1" = "foo"
  }
  owner_email = "aa@bb.ccc"
}

Schema

Required

  • name (String) Project name.
  • owner_email (String) Email address of the owner of the project. This value is only considered during creation. Changing it afterwards will have no effect.
  • parent_container_id (String) Parent resource identifier. Both container ID (user-friendly) and UUID are supported

Optional

  • 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}

Read-Only

  • container_id (String) Project container ID. Globally unique, user-friendly identifier.
  • id (String) Terraform's internal resource ID. It is structured as "container_id".
  • project_id (String) Project UUID identifier. This is the ID that can be used in most of the other resources to identify the project.