Trying to ApplyT on a `IDOutput` I get ``` panic: ...
# golang
m
Trying to ApplyT on a
IDOutput
I get
Copy code
panic: applier must have 1 input parameter assignable from pulumi.ID
Code is as follows
Copy code
scope := x.ID().
		ApplyT(func(data string) string {
			return data + "providers/Microsoft.Network"
		}).(pulumi.StringOutput)