mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
13 lines
200 B
HCL
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
|
|
}
|