cuddly-tailor-40542
09/23/2021, 1:16 AMoidcProvider := cluster.Core.OidcProvider().ApplyT(func(oidcUrl string) string {
return strings.Trim(oidcUrl, "https://")
})
The error is in the image below. Has anyone used this EKS package and did they find a workaround for this?billowy-army-68599
09/23/2021, 1:19 AMoidcarn := 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)
})
.Arn
with .Url
if neededcuddly-tailor-40542
09/23/2021, 1:50 AMbillowy-army-68599
09/23/2021, 1:57 AMcuddly-tailor-40542
09/23/2021, 11:08 AM