8 lines
106 B
Terraform
8 lines
106 B
Terraform
|
variable "foo" {}
|
||
|
|
||
|
provider "test" {
|
||
|
value = "${var.foo}"
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "foo" {}
|