Fixed terraform fmt

This commit is contained in:
Fredrik Liv 2022-10-31 10:39:55 +01:00
parent 657c2de4c3
commit 314a378e55
No known key found for this signature in database
GPG key ID: 55E58068DB18E7F3
2 changed files with 2 additions and 2 deletions

View file

@ -316,7 +316,7 @@ variable "k8s_nodes" {
root_volume_size_in_gb = optional(number) root_volume_size_in_gb = optional(number)
volume_type = optional(string) volume_type = optional(string)
server_group = optional(string) server_group = optional(string)
cloudinit = optional(object({ cloudinit = optional(object({
extra_partitions = list(object({ extra_partitions = list(object({
volume_path = string volume_path = string
partition_path = string partition_path = string

View file

@ -5,6 +5,6 @@ terraform {
version = "~> 1.17" version = "~> 1.17"
} }
} }
experiments = [module_variable_optional_attrs] experiments = [module_variable_optional_attrs]
required_version = ">= 0.14.0" required_version = ">= 0.14.0"
} }