I'm trying to create a certmanager certificate via...
# google-cloud
m
I'm trying to create a certmanager certificate via pulumi, and I'm getting the following error:
Error creating Certificate: googleapi: Error 400: resource id must consists of no more than 63 characters: lower case letters, digits and hyphens
is this a bug in Pulumi? Is there a workaround?
m
What name are you trying to use for the cert? Please show the relevant portion of the code where you're creating the certificate resource so that others can see what you're doing. 🙂
m
ah this was my mistake - I thought I'd correctly sanitized the name but I was using
replace
instead of
replaceAll
and there was a remaining period in the name.