1
0
mirror of https://github.com/rancher/types.git synced 2025-06-28 06:26:49 +00:00

Global dns fields not nullable

This commit is contained in:
Alena Prokharchyk 2019-01-29 12:32:41 -08:00
parent 8eb7ef24c5
commit 405663c671

View File

@ -54,6 +54,6 @@ type Route53ProviderConfig struct {
type CloudflareProviderConfig struct {
RootDomain string `json:"rootDomain" norman:"required"`
APIKey string `json:"apiKey" norman:"required,type=password"`
APIEmail string `json:"apiEmail" norman:"required"`
APIKey string `json:"apiKey" norman:"notnullable,required,type=password"`
APIEmail string `json:"apiEmail" norman:"notnullable,required"`
}