From baf1936b5663db67c81cc02e1f06ac4dd454b906 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Wed, 15 Nov 2023 10:39:15 +0300 Subject: [PATCH] fix: make `expires_in` type number --- jfrog-token/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jfrog-token/main.tf b/jfrog-token/main.tf index 2def46c..fd7b042 100644 --- a/jfrog-token/main.tf +++ b/jfrog-token/main.tf @@ -36,7 +36,7 @@ variable "refreshable" { } variable "expires_in" { - type = bool + type = number description = "The amount of time, in seconds, it would take for the token to expire." default = null }