Files
opentf/internal/configs/testdata/valid-modules/with-tests-module/main.tf
Liam Cervante 5acc95dda7 [Testing Framework] Add module block to test run blocks (#33456)
* [testing framework] prepare for beta phase of development

* [Testing Framework] Add module block to test run blocks
2023-07-10 11:42:05 +01:00

13 lines
200 B
HCL

variable "managed_id" {
type = string
}
data "test_data_source" "managed_data" {
id = var.managed_id
}
resource "test_resource" "created" {
value = data.test_data_source.managed_data.value
}