diff --git a/modules/cloud-config-container/simple-nva/README.md b/modules/cloud-config-container/simple-nva/README.md index 72cd41d7..97d6ff6a 100644 --- a/modules/cloud-config-container/simple-nva/README.md +++ b/modules/cloud-config-container/simple-nva/README.md @@ -173,8 +173,8 @@ module "vm" { | [enable_health_checks](variables.tf#L23) | Configures routing to enable responses to health check probes. | bool | | false | | [files](variables.tf#L29) | Map of extra files to create on the instance, path as key. Owner and permissions will use defaults if null. | map(object({…})) | | {} | | [frr_config](variables.tf#L39) | FRR configuration for container running on the NVA. | object({…}) | | null | -| [optional_firewall_open_ports](variables.tf#L90) | Optional Ports to be opened on the local firewall. | list(string) | | [] | -| [optional_run_cmds](variables.tf#L84) | Optional Cloud Init run commands to execute. | list(string) | | [] | +| [optional_firewall_open_ports](variables.tf#L84) | Optional Ports to be opened on the local firewall. | list(string) | | [] | +| [optional_run_cmds](variables.tf#L90) | Optional Cloud Init run commands to execute. | list(string) | | [] | ## Outputs diff --git a/modules/cloud-config-container/simple-nva/variables.tf b/modules/cloud-config-container/simple-nva/variables.tf index bd70e1bc..a34aed3a 100644 --- a/modules/cloud-config-container/simple-nva/variables.tf +++ b/modules/cloud-config-container/simple-nva/variables.tf @@ -81,14 +81,14 @@ variable "network_interfaces" { })) } -variable "optional_run_cmds" { - description = "Optional Cloud Init run commands to execute." - type = list(string) - default = [] -} - variable "optional_firewall_open_ports" { description = "Optional Ports to be opened on the local firewall." type = list(string) default = [] } + +variable "optional_run_cmds" { + description = "Optional Cloud Init run commands to execute." + type = list(string) + default = [] +}