what happened with "certificatemanager.NewCertific...
# general
p
what happened with "certificatemanager.NewCertificateMap" !??!?!?!?!
f
making a ton of assumptions here (you're using gcp, golang) but this should work:
Copy code
rsrc, _ := certificatemanager.NewCertificateMapResource(ctx, "certificate_map", &certificatemanager.CertificateMapResourceArgs{
			Name:        pulumi.String("cert-map-entry"),
			Description: pulumi.String("My acceptance test certificate map"),
			Labels: pulumi.StringMap{
				"terraform": pulumi.String("true"),
				"acc-test":  pulumi.String("true"),
			},
		})
agreed that the docs don't reflect what the golang lib has; I will file an issue on your behalf
p
Rob, yep, figured that out and all is good. Funny, but if I remember right, there was an entirely different resource created as CertificateMapResource in docs and that threw me off trying to find out how to get a simple map 🙂 Thank you! 🙂
high five 1