in aws I have a service that regularly updates a s...
# aws
w
in aws I have a service that regularly updates a specific route in the aws route table, I would like for pulumi to ignore this specific route (based on target) while still managing the other routes, is that possible?
l
Yes. You can remove the route (
pulumi state rm
), or ignore the specific properties that will change (if you're updating the route). Or you could update your other service to use Pulumi to make the changes 🙂
If you wanted to do that, that route could be removed from its current project and put into a project by itself, for safety. That way the other service wouldn't accidentally affect other resources.
w
You can remove the route (pulumi state rm)
Thanks, that is obvious now that I think about it 😄 It has to be relatively instant, running pulumi would be too slow for this purpose