Open saar-win opened 1 month ago
Thanks for reporting, may i have the full error logs, rather than just the screenshot. Thanks.
You can try with version 0.3.18
Seems like a validation error thrown by jumpcloud currently. Do ensure you're passing the value for idp_certificate
& idp_private_key
in are valid.
Should it be in base64 encoding?
Don't think it needs to be base64 encoded, but you can verify as well. Perhaps you can ensure it's in the proper PEM format. What i usually would do, would be to store the PEM cert calue in AWS SSM parameter store and reference it.
data "aws_ssm_parameter" "example" {
name = "/example/cert"
}
idp_certificate = data.aws_ssm_parameter.example.value
using the latest provider.
It crashes when using this block; has anyone tackled this issue?