You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/refactoring/testdata/remove-statements/child/main.tf

24 lines
324 B

# (overridden in parent module)
removed {
from = test_resource.baz
lifecycle {
destroy = false
}
}
# removed resource - in module
removed {
from = test_resource.boo
lifecycle {
destroy = true
}
}
# removed module - in module
removed {
from = module.grandchild
lifecycle {
destroy = false
}
}