terraform-provider-stackitp.../stackit/testdata/provider-invalid-attribute.tf
2026-01-22 16:00:34 +01:00

14 lines
No EOL
250 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: Apache-2.0
variable "project_id" {}
variable "name" {}
provider "stackit" {
test = "test"
}
resource "stackit_network" "network" {
name = var.name
project_id = var.project_id
}