feat(scf): Add STACKIT Cloud Foundry (#991)

* onboard STACKIT Cloud Foundry resources/datasource
This commit is contained in:
Fabian Spottog 2025-10-08 11:42:33 +02:00 committed by GitHub
parent fcc7a99488
commit a8e874699f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 3700 additions and 0 deletions

View file

@ -0,0 +1,13 @@
variable "project_id" {}
variable "name" {}
resource "stackit_scf_organization" "org" {
project_id = var.project_id
name = var.name
}
resource "stackit_scf_organization_manager" "orgmanager" {
project_id = var.project_id
org_id = stackit_scf_organization.org.org_id
}