Is there a way to serialize a pulumi resource? I'm...
# python
c
Is there a way to serialize a pulumi resource? I'm creating an api gateway, and for the api deployment to work correctly i need to define a trigger, which will be a sha of the serialized resources it depends on. Something similar to what is done on terraform: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/api_gateway_deployment#redeployment-triggers or if someone has an example on another way to do it, i'll appreciate it.
f
From looking at the example, I think I’m missing why this cannot be modeled with
depends_on
?
I think that would work?