terraform/internal/rpcapi/testdata/sourcebundle/import/import.tf
Liam Cervante 517f9944f7
stacks: support deferred imports in stacks events (#35334)
* stacks: support deferred imports in stacks events

* fix indentation

* fix tests
2024-06-14 13:57:49 +02:00

19 lines
260 B
HCL

terraform {
required_providers {
testing = {
source = "hashicorp/testing"
version = "0.1.0"
}
}
}
variable "id" {
type = string
}
import {
id = var.id
to = testing_resource.resource
}
resource "testing_resource" "resource" {}