From 41f65f95fe93d34124915ac4d7f76c37bb6bd501 Mon Sep 17 00:00:00 2001 From: Marc Olivier Bergeron Date: Fri, 31 Oct 2025 10:54:46 -0400 Subject: [PATCH] Fixing variables.tf format as it would give an error with 'tofu fmt -check -recursive ./' --- ctf/templates/init/.deploy/common/variables.tf | 2 +- ctf/utils.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ctf/templates/init/.deploy/common/variables.tf b/ctf/templates/init/.deploy/common/variables.tf index c0ad782..4ac5c99 100644 --- a/ctf/templates/init/.deploy/common/variables.tf +++ b/ctf/templates/init/.deploy/common/variables.tf @@ -15,7 +15,7 @@ variable "build_container" { variable "ctf_dns_network_zone" { default = "ctf" - type = string + type = string } locals { diff --git a/ctf/utils.py b/ctf/utils.py index 678fe6e..8a93b30 100644 --- a/ctf/utils.py +++ b/ctf/utils.py @@ -193,7 +193,7 @@ def get_common_modules_output_variables() -> set[str]: text="""\ variable "{{variable}}" { default = "{{default}}" - type = {{type}} + type = {{type}} } """ ) diff --git a/pyproject.toml b/pyproject.toml index 8f3a85d..276c4fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ dependencies = [ "typer==0.16.0", "pydantic" ] -version = "4.1.0" +version = "4.1.1" classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent",