Skip to content

Commit

Permalink
Added new parameters documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
CORP\bogdan.vakulyuk committed Nov 3, 2022
1 parent f47737e commit da31baf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | <pre>list(object({<br> name = string<br> value = string<br> type = string // Optional<br> }))</pre> | `[]` | 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 |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit da31baf

Please sign in to comment.