9 lines
123 B
HCL
9 lines
123 B
HCL
resource "aws_instance" "foo" {
|
|
count = "1"
|
|
current = "${count.index}"
|
|
|
|
lifecycle {
|
|
prevent_destroy = true
|
|
}
|
|
}
|