From cfc0a19cd55551d9ed87dc1549c0fd9c5329f674 Mon Sep 17 00:00:00 2001 From: Alena Prokharchyk Date: Mon, 28 Jan 2019 19:51:45 -0800 Subject: [PATCH] Required tag on glboal dns provider --- apis/management.cattle.io/v3/globaldns_types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apis/management.cattle.io/v3/globaldns_types.go b/apis/management.cattle.io/v3/globaldns_types.go index f2367a29..0ceae535 100644 --- a/apis/management.cattle.io/v3/globaldns_types.go +++ b/apis/management.cattle.io/v3/globaldns_types.go @@ -48,8 +48,8 @@ type GlobalDNSProviderSpec struct { type Route53ProviderConfig struct { RootDomain string `json:"rootDomain" norman:"required"` - AccessKey string `json:"accessKey"` - SecretKey string `json:"secretKey" norman:"type=password"` + AccessKey string `json:"accessKey" norman:"required"` + SecretKey string `json:"secretKey" norman:"required,type=password"` } type CloudflareProviderConfig struct {