type Grant struct {
User string `yaml:"user" validate:"excluded_with=Group"`
Group string `yaml:"group" validate:"excluded_with=User"`
Provider string `yaml:"provider"`
Role string `yaml:"role" validate:"required"`
Resource string `yaml:"resource" validate:"required"`
}