8 lines
104 B
Terraform
8 lines
104 B
Terraform
|
|
resource "null_resource" "noop" {}
|
||
|
|
|
||
|
|
module "test" {
|
||
|
|
source = "./inner"
|
||
|
|
|
||
|
|
im_a_string = "hello"
|
||
|
|
}
|