From 895eca769dad483c6ac93c5475d6308a5a8b46fc Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Tue, 26 Sep 2023 18:36:55 +0000 Subject: [PATCH] readded custom_names, custom_icons --- fly-region/main.tf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/fly-region/main.tf b/fly-region/main.tf index 137f24b..d778586 100644 --- a/fly-region/main.tf +++ b/fly-region/main.tf @@ -33,6 +33,18 @@ variable "mutable" { type = bool } +variable "custom_names" { + default = {} + description = "A map of custom display names for region IDs." + type = map(string) +} + +variable "custom_icons" { + default = {} + description = "A map of custom icons for region IDs." + type = map(string) +} + variable "regions" { default = [] description = "List of regions to include for region selection."