This message was deleted.
# azure
s
This message was deleted.
a
The Terraform provider doesn't support it yet unfortunately: https://github.com/terraform-providers/terraform-provider-azurerm/issues/4185 A
TemplateDeployment
can be used as a stop-gap in the meantime.
p
TemplateDeployment sounds interesting. Can that integrate with other resources using Input<T> and Output<T>?
(Using .NET Core with C#)
a
Somewhat. There's no C# example in the examples repo right now, but the TS example should be enough to go off: https://github.com/pulumi/examples/blob/master/azure-ts-arm-template/index.ts
p
I see - that’s helpful.
Looks like it won’t be able to track inputs for things that need to be specified in the template itself…
How would one typically do that, if for example, we have resource A, and a resource B of type TemplateDeployment, and an output of A needs to go into the template of B?
a
Use the "parameters" option.
p
I think this will work as a workaround for us.
Thanks @adventurous-garage-59192!
👍 1