Skip to content

Commit fe258cf

Browse files
committed
review change
Signed-off-by: Mauritz Uphoff <[email protected]>
1 parent 1643494 commit fe258cf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/data-sources/resourcemanager_project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ data "stackit_resourcemanager_project" "example" {
2929

3030
### Read-Only
3131

32-
- `creation_time` (String) Date-time at which the folder was created.
32+
- `creation_time` (String) Date-time at which the project was created.
3333
- `id` (String) Terraform's internal data source. ID. It is structured as "`container_id`".
3434
- `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}
3535
- `name` (String) Project name.
3636
- `parent_container_id` (String) Parent resource identifier. Both container ID (user-friendly) and UUID are supported
37-
- `update_time` (String) Date-time at which the folder was last modified.
37+
- `update_time` (String) Date-time at which the project was last modified.

docs/resources/resourcemanager_project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To create a project within a STACKIT Network Area, setting the label `networkAre
5252
### Read-Only
5353

5454
- `container_id` (String) Project container ID. Globally unique, user-friendly identifier.
55-
- `creation_time` (String) Date-time at which the folder was created.
55+
- `creation_time` (String) Date-time at which the project was created.
5656
- `id` (String) Terraform's internal resource ID. It is structured as "`container_id`".
5757
- `project_id` (String) Project UUID identifier. This is the ID that can be used in most of the other resources to identify the project.
58-
- `update_time` (String) Date-time at which the folder was last modified.
58+
- `update_time` (String) Date-time at which the project was last modified.

stackit/internal/services/resourcemanager/project/datasource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ func (d *projectDataSource) Schema(_ context.Context, _ datasource.SchemaRequest
6767
"parent_container_id": "Parent resource identifier. Both container ID (user-friendly) and UUID are supported",
6868
"name": "Project name.",
6969
"labels": `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}`,
70-
"creation_time": "Date-time at which the folder was created.",
71-
"update_time": "Date-time at which the folder was last modified.",
70+
"creation_time": "Date-time at which the project was created.",
71+
"update_time": "Date-time at which the project was last modified.",
7272
}
7373

7474
resp.Schema = schema.Schema{

stackit/internal/services/resourcemanager/project/resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ func (r *projectResource) Schema(_ context.Context, _ resource.SchemaRequest, re
105105
"name": "Project name.",
106106
"labels": "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}. \nTo create a project within a STACKIT Network Area, setting the label `networkArea=<networkAreaID>` is required. This can not be changed after project creation.",
107107
"owner_email": "Email address of the owner of the project. This value is only considered during creation. Changing it afterwards will have no effect.",
108-
"creation_time": "Date-time at which the folder was created.",
109-
"update_time": "Date-time at which the folder was last modified.",
108+
"creation_time": "Date-time at which the project was created.",
109+
"update_time": "Date-time at which the project was last modified.",
110110
}
111111

112112
resp.Schema = schema.Schema{

0 commit comments

Comments
 (0)