mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-27 09:07:02 -04:00
10 lines
156 B
HCL
10 lines
156 B
HCL
resource "aws_instance" "web" {
|
|
ami = "foo"
|
|
lifecycle {
|
|
prevent_destroy = "true"
|
|
}
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
ami = "foo"
|
|
}
|