opentofu/config/test-fixtures/resource-multi-lifecycle.tf
Mitchell Hashimoto 5d684b399c
config: error when loading multiple lifecycle blocks
Fixes #8776

This introduces an error when multiple `lifecycle` blocks exist on a
resource in the configuration.
2016-12-10 18:52:13 -05:00

5 lines
68 B
HCL

resource "aws_instance" "foo" {
lifecycle {}
lifecycle {}
}