()
| 453 | } |
| 454 | |
| 455 | func (ap *AutomationPolicy) onlyInternalIssuer() bool { |
| 456 | if len(ap.Issuers) != 1 { |
| 457 | return false |
| 458 | } |
| 459 | _, ok := ap.Issuers[0].(*InternalIssuer) |
| 460 | return ok |
| 461 | } |
| 462 | |
| 463 | // isWildcardOrDefault determines if the subjects include any wildcard domains, |
| 464 | // or is the "default" policy (i.e. no subjects) which is unbounded. |