terraform-provider-stackitp.../stackit/internal/services/git/testdata/resource.tf
Mauritz Uphoff cf7a7d154e
feat: implement stackit git instances (#791)
* feat: implement stackit git instances

* review changes
2025-05-09 08:50:23 +02:00

8 lines
127 B
HCL

variable "project_id" {}
variable "name" {}
resource "stackit_git" "git" {
project_id = var.project_id
name = var.name
}