Skip to content

Commit

Permalink
Merge pull request #90 from XenitAB/fix/kyverno-cert
Browse files Browse the repository at this point in the history
Set cert to false by default
  • Loading branch information
simongottschlag authored Dec 15, 2020
2 parents 35ed711 + bf5bf79 commit 6fc47b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/kubernetes/kyverno/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| create\_self\_signed\_cert | If true helm will generate a self signed cert | `bool` | `true` | no |
| create\_self\_signed\_cert | If true helm will generate a self signed cert | `bool` | `false` | no |
| namespaces | Namespaces to apply mutating hooks to | `list(string)` | n/a | yes |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion modules/kubernetes/kyverno/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ variable "namespaces" {
variable "create_self_signed_cert" {
description = "If true helm will generate a self signed cert"
type = bool
default = true
default = false
}

0 comments on commit 6fc47b1

Please sign in to comment.