Skip to content

Commit

Permalink
Add properties to middleware crd headers (#1434)
Browse files Browse the repository at this point in the history
* Add properties to middleware crd headers

* use additionalProperties instead
  • Loading branch information
iameskild authored Sep 13, 2022
1 parent 9db27aa commit 77265d8
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,15 @@ resource "kubernetes_manifest" "middleware" {
type = "object"
properties = {
customRequestHeaders = {
additionalProperties = {
type = "string"
}
type = "object"
}
customResponseHeaders = {
additionalProperties = {
type = "string"
}
type = "object"
}
accessControlAllowCredentials = {
Expand Down Expand Up @@ -611,6 +617,9 @@ resource "kubernetes_manifest" "middleware" {
type = "string"
}
sslProxyHeaders = {
additionalProperties = {
type = "string"
}
type = "object"
}
sslForceHost = {
Expand Down

0 comments on commit 77265d8

Please sign in to comment.