mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
8 lines
97 B
Terraform
8 lines
97 B
Terraform
|
variable "ami" {
|
||
|
default = "foo"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "bar" {
|
||
|
foo = "${var.ami}"
|
||
|
}
|