opentofu/terraform/testdata/plan-module-provider-var/child/main.tf
2019-06-30 10:16:15 +02:00

10 lines
119 B
HCL

variable "foo" {}
provider "aws" {
value = "${var.foo}"
}
resource "aws_instance" "test" {
value = "hello"
}