opentofu/terraform/testdata/validate-module-pc-inherit-orphan/main.tf
2019-06-30 10:16:15 +02:00

10 lines
116 B
HCL

variable "foo" {
default = "bar"
}
provider "aws" {
set = "${var.foo}"
}
resource "aws_instance" "foo" {}