diff --git a/README.md b/README.md index a4b46c6..e13d7fe 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ module "nginx-controller" { | metrics_enabled | Allow exposing metrics for prometheus-operator | `bool` | `false` | no | | disable_heavyweight_metrics | Disable some 'heavyweight' or unnecessary metrics | `bool` | `false` | no | | additional\_set | Additional sets to Helm |
list(object({
name = string
value = string
type = string // Optional
}))
| `[]` | no | +| wait | Will wait until all resources are in a ready state" | `bool` | `true` | no | +| timeout | Time in seconds to wait for any individual kubernetes operation | `number` | `300` | no | ## Outputs | Name | Description | diff --git a/variables.tf b/variables.tf index befd4bc..5bb8ffd 100644 --- a/variables.tf +++ b/variables.tf @@ -112,7 +112,7 @@ variable "wait" { variable "timeout" { type = number - description = " Time in seconds to wait for any individual kubernetes operation" + description = "Time in seconds to wait for any individual kubernetes operation" default = 300 }