mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
11 lines
139 B
HCL
11 lines
139 B
HCL
variable "foo" {
|
|
default = "bar"
|
|
description = "bar"
|
|
}
|
|
|
|
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
resource "aws_security_group" "web" {}
|