mirror of
https://github.com/opentofu/opentofu.git
synced 2026-03-07 07:43:50 -05:00
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
|
|
}
|