* 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>
11 lines
No EOL
179 B
HCL
11 lines
No EOL
179 B
HCL
variable "project_id" {}
|
|
variable "name" {}
|
|
|
|
provider "stackit" {
|
|
test = "test"
|
|
}
|
|
|
|
resource "stackit_network" "network" {
|
|
name = var.name
|
|
project_id = var.project_id
|
|
} |