Hey, a few questions: 1. Is there AWS EKS managed...
# golang
g
Hey, a few questions: 1. Is there AWS EKS managed node group support in go? https://github.com/pulumi/pulumi-eks is nice but only typescript. I only see classic node groups supported in https://github.com/pulumi/pulumi-aws in the go sdk 2. Similarly, https://github.com/pulumi/pulumi-awsx does not have go support. Is there a timeline for that? I am specifically looking at the vpc best practices creation function. It would be nice to have that single function call. 3. For getting values out of a created vpc resource, I see that direct value references do not seem to be supported in Go. It looks like I should be using the Apply() function as described here. Can you tell me how that would specifically work for getting a vpc id as a string? I am looking at this example
Copy code
url := vpc.DnsName.ApplyString(func(dnsName string) string {
    return "https://" + dnsName
})
Thank you
l
Multi-lang component roadmap is outlined in this issue: https://github.com/pulumi/pulumi/issues/2430