blob: e5a723b3a495283fd124481bcc095ebd549e8732 [file] [log] [blame]
variable "require_new" {
type = string
}
resource "aws_instance" "web" {
// require_new is a special attribute recognized by testDiffFn that forces
// a new resource on every apply
require_new = var.require_new
lifecycle {
create_before_destroy = true
}
}