Skip to content

Commit 2eea7d3

Browse files
authored
Merge pull request #49 from nsec/fixing-variables-tf-format
Fixing OpenTofu template files format
2 parents 6efb494 + 41f65f9 commit 2eea7d3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ctf/templates/init/.deploy/common/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ variable "build_container" {
1515

1616
variable "ctf_dns_network_zone" {
1717
default = "ctf"
18-
type = string
18+
type = string
1919
}
2020

2121
locals {

ctf/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def get_common_modules_output_variables() -> set[str]:
193193
text="""\
194194
variable "{{variable}}" {
195195
default = "{{default}}"
196-
type = {{type}}
196+
type = {{type}}
197197
}
198198
"""
199199
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies = [
1919
"typer==0.16.0",
2020
"pydantic"
2121
]
22-
version = "4.1.0"
22+
version = "4.1.1"
2323
classifiers = [
2424
"Programming Language :: Python :: 3",
2525
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)