feat(provider): Added acceptance tests (#891)

* feat(provider): Added acceptance tests

Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>

* Remove argus custom endpoint from provider. This code was removed.

Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>

---------

Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
This commit is contained in:
Alexander Dahmen 2025-06-27 09:44:25 +02:00 committed by GitHub
parent 38fdb60e69
commit 2f06bc590d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 323 additions and 28 deletions

View file

@ -0,0 +1,11 @@
variable "project_id" {}
variable "name" {}
provider "stackit" {
test = "test"
}
resource "stackit_network" "network" {
name = var.name
project_id = var.project_id
}