Skip to content

Commit

Permalink
Merge pull request #516 from SumoLogic/yuting-SUMO-218762-fix-kinesis
Browse files Browse the repository at this point in the history
SUMO-218762 Make authentication and path required for kinesis log source
  • Loading branch information
sumovishal authored May 15, 2023
2 parents 805540f + 6bcbaa7 commit d46bd98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sumologic/resource_sumologic_kinesis_log_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func resourceSumologicKinesisLogSource() *schema.Resource {
}
kinesisLogSource.Schema["authentication"] = &schema.Schema{
Type: schema.TypeList,
Optional: true,
Required: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Expand All @@ -63,7 +63,7 @@ func resourceSumologicKinesisLogSource() *schema.Resource {

kinesisLogSource.Schema["path"] = &schema.Schema{
Type: schema.TypeList,
Optional: true,
Required: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit d46bd98

Please sign in to comment.