From 00508ff229f0e9796dddd0fec2f8708f0e5da5df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20BUCHART?= Date: Wed, 7 Oct 2020 17:02:23 +0200 Subject: [PATCH] fix: Fix type for oidc_verify_cert --- provider/resource_config_auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/resource_config_auth.go b/provider/resource_config_auth.go index 9ccce5f..220abb9 100644 --- a/provider/resource_config_auth.go +++ b/provider/resource_config_auth.go @@ -39,7 +39,7 @@ func resourceConfigAuth() *schema.Resource { Optional: true, }, "oidc_verify_cert": { - Type: schema.TypeString, + Type: schema.TypeBool, Optional: true, }, },