mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
12 lines
201 B
HCL
12 lines
201 B
HCL
resource "aws_instance" "web" {
|
|
ami = "${var.foo}"
|
|
security_groups = [
|
|
"foo",
|
|
"${aws_security_group.firewall.foo}"
|
|
]
|
|
|
|
provisioner "shell" {
|
|
path = "foo"
|
|
}
|
|
}
|