This message was deleted.
# general
s
This message was deleted.
b
give this a try:
Copy code
oidcarn := cluster.Core.OidcProvider().ApplyT(func(oidcprovider *iam.OpenIdConnectProvider) pulumi.StringOutput {
	if oidcprovider == nil {
		return pulumi.String("").ToStringOutput()
	}
	return oidcprovider.Arn
}).ApplyT(func(v interface{}) string {
	return v.(string)
})
replace the
.Arn
with
.Url
if needed
c
Omg! Thank you for this! Works like a charm
b
@white-balloon-205 helped me with the exact same thing eaelier today 🙂
c
Oh well! I hope I'll be able to help someone too!