Skip to content

Commit

Permalink
Remove region spec requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonbondon committed May 29, 2019
1 parent eaf11cf commit 9000b55
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pkg/apis/certmanager/validation/issuer.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,6 @@ func ValidatePrivateACMIssuerConfig(iss *v1alpha1.PrivateACMIssuer, fldPath *fie
el = append(el, field.Required(fldPath.Child("certificateAuthorityARN"), "certificate authority arn is a required field"))
}

if len(iss.Region) == 0 {
el = append(el, field.Required(fldPath.Child("region"), "region is a required field"))
}

return el
}

Expand Down

0 comments on commit 9000b55

Please sign in to comment.