muvaffak

Results 104 comments of muvaffak

From my reading, seems like the minimum Go version that'd remove these CVEs is v1.18.1 , right @nimish22 ?

That's due to the look-up mechanism we have for this feature where for each field we check whether there is a referencer field, hence no error if nothing hits the...

It seems like there isn't a way other than forking Terraform to disable conflict checks https://github.com/hashicorp/terraform-plugin-sdk/blob/e91cd2e/helper/schema/schema.go#L1524

> In this resource, "broker-name" is required and the external name is generated by the cloud provider. How would `metadata.name` help in this case?

When a resource has a name but also queried by an assigned ID, I usually treat the name just like a tag or label since it's not used to identify...

I think this is a missing feature in reference resolver in crossplane-runtime affecting all providers. It assumes that the value could either be [`string`](https://github.com/crossplane/crossplane-runtime/blob/af4e148/pkg/reference/reference.go#L106) or [`[]string`](https://github.com/crossplane/crossplane-runtime/blob/af4e148/pkg/reference/reference.go#L175). There are some helpers...

What would be the source information to that could help us know what goes to `SetupFn`?

@remyleone The reason it fails is because the type has to be exported, hence start with uppercase in Go. But it's a great idea to have a validation since it's...

> I just noticed provider-jet-gcp seems to. Is this because they fill the Description when others don't? @negz Yes, that's the case. GCP fills `Description` while AWS doesn't. > I...

The conversion from CR to TF input file happens in `GetParameters` function of the given type. I see the following options for injecting a function: 1. Let user override `GetParameters`...