From 23c2f58a514f678080694d6fa312d124ac143d32 Mon Sep 17 00:00:00 2001 From: Matt Farmer Date: Thu, 25 Jul 2024 16:24:57 -0400 Subject: [PATCH] fix: Don't provide defaults for public repositories --- variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index e464151..2213f9c 100644 --- a/variables.tf +++ b/variables.tf @@ -102,25 +102,25 @@ variable "remote_repository_config" { }), null) }), null) docker_repository = optional(object({ - public_repository = optional(string, "DOCKER_HUB") + public_repository = optional(string) custom_repository = optional(object({ uri = string }), null) }), null) maven_repository = optional(object({ - public_repository = optional(string, "MAVEN_CENTRAL") + public_repository = optional(string) custom_repository = optional(object({ uri = string }), null) }), null) npm_repository = optional(object({ - public_repository = optional(string, "NPMJS") + public_repository = optional(string) custom_repository = optional(object({ uri = string }), null) }), null) python_repository = optional(object({ - public_repository = optional(string, "PYPI") + public_repository = optional(string) custom_repository = optional(object({ uri = string }), null)