mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-03 05:01:30 -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"
|
|
} |