mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
* [testing framework] prepare for beta phase of development * [Testing Framework] Add module block to test run blocks
12 lines
200 B
HCL
12 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
|
|
}
|