mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-27 17:06:27 -06:00
2b72882405
This allows it to load provider configuration and interpolate it rather than it coming purely from the environment.
6 lines
59 B
HCL
6 lines
59 B
HCL
variable "foo" {}
|
|
|
|
provider "aws" {
|
|
foo = "${var.foo}"
|
|
}
|