Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
skabou committed Apr 4, 2024
2 parents a836d43 + dada7d3 commit 0e5f541
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions nested_K8sCustomIngressTlsHostsHaveDefinedDomainSuffix.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,57 @@ resource pdK8sCustomIngressTlsHostsHaveDefinedDomainSuffix 'Microsoft.Authorizat
}
defaultValue: {
}
schema: {
description: 'A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all resources.'
type: 'object'
properties: {
matchLabels: {
description: 'matchLabels is a map of {key,value} pairs.'
type: 'object'
additionalProperties: {
type: 'string'
}
minProperties: 1
}
matchExpressions: {
description: 'matchExpressions is a list of values, a key, and an operator.'
type: 'array'
items: {
type: 'object'
properties: {
key: {
description: 'key is the label key that the selector applies to.'
type: 'string'
}
operator: {
description: 'operator represents a key\'s relationship to a set of values.'
type: 'string'
enum: [
'In'
'NotIn'
'Exists'
'DoesNotExist'
]
}
values: {
description: 'values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty.'
type: 'array'
items: {
type: 'string'
}
}
}
required: [
'key'
'operator'
]
additionalProperties: false
}
minItems: 1
}
}
additionalProperties: false
}
}
allowedDomainSuffixes: {
type: 'Array'
Expand Down

0 comments on commit 0e5f541

Please sign in to comment.