opentofu/config/test-fixtures/validate-unknownvar/main.tf

9 lines
107 B
Terraform
Raw Normal View History

2014-07-28 12:43:00 -05:00
variable "foo" {
2014-08-05 00:04:48 -05:00
default = "bar"
description = "bar"
2014-07-28 12:43:00 -05:00
}
provider "do" {
2014-08-05 00:04:48 -05:00
api_key = "${var.bar}"
2014-07-28 12:43:00 -05:00
}