Skip to content

Commit d46bd98

Browse files
authored
Merge pull request #516 from SumoLogic/yuting-SUMO-218762-fix-kinesis
SUMO-218762 Make authentication and path required for kinesis log source
2 parents 805540f + 6bcbaa7 commit d46bd98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sumologic/resource_sumologic_kinesis_log_source.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func resourceSumologicKinesisLogSource() *schema.Resource {
3636
}
3737
kinesisLogSource.Schema["authentication"] = &schema.Schema{
3838
Type: schema.TypeList,
39-
Optional: true,
39+
Required: true,
4040
MaxItems: 1,
4141
Elem: &schema.Resource{
4242
Schema: map[string]*schema.Schema{
@@ -63,7 +63,7 @@ func resourceSumologicKinesisLogSource() *schema.Resource {
6363

6464
kinesisLogSource.Schema["path"] = &schema.Schema{
6565
Type: schema.TypeList,
66-
Optional: true,
66+
Required: true,
6767
MaxItems: 1,
6868
Elem: &schema.Resource{
6969
Schema: map[string]*schema.Schema{

0 commit comments

Comments
 (0)