You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apiVersion: tf.upbound.io/v1beta1kind: Workspacemetadata:
name: example-random-generatorannotations:
meta.upbound.io/example-id: tf/v1beta1/workspace# The terraform workspace will be named 'random'. If you omit this# annotation it would be derived from metadata.name - e.g. 'example-random-generator.crossplane.io/external-name: crossplanespec:
forProvider:
source: Inlinemodule: | resource "random_id" "example_id" { byte_length = 4 } resource "random_password" "password" { length = 16 special = true } // Non-sensitive Outputs are written to status.atProvider.outputs and to the connection secret. output "random_id_hex" { value = random_id.example_id.hex } // Sensitive Outputs are only written to the connection secret output "random_password" { value = random_password.password sensitive = true } // Terraform has several other random resources, see the random provider for detailsproviderConfigRef:
name: ess-terraformpublishConnectionDetailsTo:
name: random-to-vaultconfigRef:
name: vault
Unfortunately, we need to also bump the crossplane-runtime dependency to a more recent version, which breaks the build for some not so trivial issue on the generated code.
How can we reproduce it?
See above.
What environment did it happen in?
Crossplane Version: 1.14.4
Provider Version: 0.13
The text was updated successfully, but these errors were encountered:
What happened?
Following https://docs.crossplane.io/knowledge-base/integrations/vault-as-secret-store/#configure-vault-kubernetes-authentication and deploying the manifest below, results in the following error:
This is due to the missing injection of the ESS TLS secrets here, as done by other providers, e.g. see crossplane-contrib/provider-upjet-aws#677 or crossplane-contrib/provider-upjet-gcp#294.
Unfortunately, we need to also bump the
crossplane-runtime
dependency to a more recent version, which breaks the build for some not so trivial issue on the generated code.How can we reproduce it?
See above.
What environment did it happen in?
The text was updated successfully, but these errors were encountered: