-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
Problem description
Currently, developers working with the STACKIT provider have no way to determine the network area (area_id
) of a project via Terraform.
This limitation makes it difficult to programmatically understand or manage network configurations based on the project's location or area.
Proposed solution
Expose the area_id
attribute in the existing data source [stackit_resourcemanager_project
]
data "stackit_resourcemanager_project" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
container_id = "example-container-abc123"
area_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}