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
I am not able to use the jks-trust-store provider, version 0.2.1. Probably it's the confusion between the provider name and the resource type which is jks-trust-store for the provider (no underscore allowed) and jks_trust_store for the resource.
However, if I declare my resource as such:
resource "jks_trust_store" "cluster-truststore" {...}
I get an error saying: Could not retrieve the list of available versions for provider hashicorp/jks
The "jks" part is identified as provider name and by default looked up in the hashicorp namespace.
Please provide documentation on the use of this provider or rename the resource.
The text was updated successfully, but these errors were encountered:
I managed to fix the error by specifying a provider attribute.
resource "jks_trust_store" "cluster-truststore" {
provider = jks-trust-store
certificates = [...]
password = ...
}
Thanks @kvanbrabant
I get the feeling that this project is dead. Pity, it's the only thing that generates jks in Terraform, and I don't like shelling out to keytool.
I am not able to use the jks-trust-store provider, version 0.2.1. Probably it's the confusion between the provider name and the resource type which is jks-trust-store for the provider (no underscore allowed) and jks_trust_store for the resource.
However, if I declare my resource as such:
resource "jks_trust_store" "cluster-truststore" {...}
I get an error saying: Could not retrieve the list of available versions for provider hashicorp/jks
The "jks" part is identified as provider name and by default looked up in the hashicorp namespace.
Please provide documentation on the use of this provider or rename the resource.
The text was updated successfully, but these errors were encountered: