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