mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-13 06:00:33 -04:00
10 lines
168 B
HCL
10 lines
168 B
HCL
data "aws_instance" "data_instance" {
|
|
data_config = 10
|
|
}
|
|
resource "aws_instance" "resource_instance" {
|
|
resource_config = 20
|
|
}
|
|
module "child" {
|
|
source = "./child"
|
|
}
|