In my puppet class i use 3 create_resources. I want to execute these create_resources in order. Thus there are relationships between each other
create_resources(change_config::cr1, $resource)
create_resources(change_config::cr2, $resource)
create_resources(change_config::cr3, $resource)
cr3 should be executed after cr2 and cr2 should be after cr1.
Is there a way to do this ?
Regards, Malintha