Hasan Turken
Hasan Turken
### What problem are you facing? I want to get configuration/status of an external resource that is not managed by Crossplane. This is especially useful while building a composition that...
### Description of your changes Fixes https://github.com/crossplane/crossplane/issues/3034 ? I have: - [ ] Read and followed Crossplane's [contribution process]. - [ ] Run `make reviewable` to ensure this PR is...
### What problem are you facing? With the recently introduced [External Secret Stores](https://github.com/crossplane/crossplane/blob/master/design/design-doc-external-secret-stores.md) support, it is now possible to write/publish Connection Details to External Secret Stores like Vault. However, there...
I can not parse the csv file with the following content: id_1,id_2,id_3 delay,,0 delay,,0 Note that, there is a null char between the 2 commas for the empty field (put...
### What problem are you facing? In PR #76, @muvaf implemented two different modes for Apply and Destroy operations, namely `sync` and `async`. Currently, the operation mode per resource is...
### What problem are you facing? There are some resources that requires async mode only for specific type of operations, e.g. destroy. See this as an example: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecr_repository#timeouts ### How...
### What problem are you facing? In #128, we have moved the logic in generate/main.go of providers into Terrajet and abstracted that logic from Terrajet users. We need to add...
### What problem are you facing? Today, we leave implementing provider-specific [SetupFn](https://github.com/crossplane-contrib/terrajet/blob/e1a8ff4a3f6c28c31101a95533c54150c1917631/pkg/terraform/store.go#L39) to the developer. This requires manually adding all configuration parameters which is usually postponed to later steps. ###...
### What problem are you facing? Recently we [introduced](https://github.com/crossplane/terrajet/pull/174) generating resources from CLI schema with a conversion function which still converts input schema to SDK v2 schema. This was originally...
### What problem are you facing? Currently, install and upgrade calls using helm go client is blocking which means, reconcile loop is being blocked until deployment is done. Since we...