```const get = new azure.appservice.HttpFunction("...
# general
a
Copy code
const get = new azure.appservice.HttpFunction("Read", {
  route: "items",
  methods: ["GET"],
  callback: async (context, request) => {
    return { status: 200, body: { url: anotherResource.urn } };
  },
});
t
This should work, you just need to decode the output with
.get()
:
Copy code
body: { url: anotherResource.urn.get() }