mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-10 02:01:50 -05:00
24 lines
381 B
HCL
24 lines
381 B
HCL
resource "aws_instance" "web" {
|
|
ami = "${var.foo}"
|
|
security_groups = [
|
|
"foo",
|
|
"${aws_security_group.firewall.foo}"
|
|
]
|
|
|
|
connection {
|
|
type = "ssh"
|
|
user = "root"
|
|
}
|
|
|
|
provisioner "shell" {
|
|
path = "foo"
|
|
connection {
|
|
user = "nobody"
|
|
}
|
|
}
|
|
|
|
provisioner "shell" {
|
|
path = "bar"
|
|
}
|
|
}
|