mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-18 16:00:48 -04:00
11 lines
188 B
HCL
11 lines
188 B
HCL
provider "aws" {}
|
|
|
|
resource "aws_security_group" "firewall" {}
|
|
|
|
resource "aws_instance" "web" {
|
|
security_groups = [
|
|
"foo",
|
|
"${aws_security_group.firewall.foo}"
|
|
]
|
|
}
|