opentofu/terraform/test-fixtures/input-provider-with-vars/main.tf

8 lines
95 B
Terraform
Raw Normal View History

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