mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-18 04:01:08 -05:00
11 lines
153 B
HCL
11 lines
153 B
HCL
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
data "test_data_source" "resource_data" {
|
|
id = var.id
|
|
}
|
|
|
|
resource "test_resource" "another_resource" {
|
|
id = "hi"
|
|
} |