Hi all! I'm having an hard time figuring out how t...
# getting-started
v
Hi all! I'm having an hard time figuring out how to handle resource dependencies between projects, hopefully someone may guide me in the right direction. I have a pulumi project to manage an aws SQS. Them i have another project to manage a lambda function. This uses
queue.onEvent()
, so i have to somehow reference the SQS resource. And here is where things get confused to me. If i
get
the queue, i cannot manage it. If i import the queue, them i can manage it and it works ok. But is this really the best approach?