mirror of https://github.com/hashicorp/terraform
The provider_meta specification does not allow interpolation, but we were not preventing it in the configuration.pull/28072/head
parent
b26ae9cf48
commit
759b76436a
@ -0,0 +1,10 @@
|
||||
terraform {
|
||||
provider_meta "my-provider" {
|
||||
hello = var.name
|
||||
}
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -0,0 +1,5 @@
|
||||
terraform {
|
||||
provider_meta "my-provider" {
|
||||
hello = "test-module"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue