From 4896a30cebd5ce32e015093f96d121ffb5e64106 Mon Sep 17 00:00:00 2001 From: Wendelin Peleska Date: Thu, 12 Oct 2023 14:50:04 +0200 Subject: [PATCH] set correct type_category default value --- exoscale-instance-type/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exoscale-instance-type/main.tf b/exoscale-instance-type/main.tf index 64ff5d3..df333e5 100644 --- a/exoscale-instance-type/main.tf +++ b/exoscale-instance-type/main.tf @@ -45,7 +45,7 @@ variable "custom_descriptions" { } variable "type_category" { - default = ["standard", "gpu"] + default = ["standard"] description = "A list of instance type categories the user is allowed to choose. One of [\"standard\", \"cpu\", \"memory\", \"storage\", \"gpu\"]" type = list(string) }