Files
opentf/internal/command/testdata/test/with_setup_module/setup/main.tf

14 lines
165 B
HCL

variable "value" {
type = string
}
variable "id" {
type = string
}
resource "test_resource" "managed" {
provider = setup
id = var.id
value = var.value
}