Skip to content

Commit

Permalink
hashicorp#25131: add schema
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Jul 17, 2022
1 parent e799203 commit 2f62ef0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions internal/service/guardduty/organization_configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,29 @@ func ResourceOrganizationConfiguration() *schema.Resource {
},
},
},
"kubernetes": {
Type: schema.TypeList,
Optional: true,
Computed: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"audit_logs": {
Type: schema.TypeList,
Required: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"enable": {
Type: schema.TypeBool,
Required: true,
},
},
},
},
},
},
},
},
},
},
Expand Down

0 comments on commit 2f62ef0

Please sign in to comment.