opentofu/terraform/test-fixtures/input-provider-with-vars/main.tf
2014-10-18 14:36:34 -07:00

8 lines
95 B
HCL

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