opentofu/terraform/test-fixtures/import-provider-vars/main.tf
Mitchell Hashimoto 2b72882405
terraform: import loads the context module by default
This allows it to load provider configuration and interpolate it rather
than it coming purely from the environment.
2016-11-09 15:08:22 -08:00

6 lines
59 B
HCL

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