mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-28 09:36:50 -04:00
10 lines
139 B
HCL
10 lines
139 B
HCL
variable "foo" {
|
|
default = "bar"
|
|
description = "bar"
|
|
}
|
|
|
|
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
resource "aws_security_group" "web" {}
|