mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 20:52:58 -06:00
10 lines
116 B
HCL
10 lines
116 B
HCL
variable "foo" {
|
|
default = "bar"
|
|
}
|
|
|
|
provider "aws" {
|
|
set = "${var.foo}"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {}
|