Skip to content

Commit

Permalink
Dummy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikAtSumo committed Jan 23, 2025
1 parent dd450a7 commit 4d45335
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sumologic/data_source_sumologic_role.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ func dataSourceSumologicRole() *schema.Resource {
Optional: true,
Computed: true,
},
"description": {
"filter_predicate": {
Type: schema.TypeString,
Computed: true,
},
"filter_predicate": {
"description": {
Type: schema.TypeString,
Computed: true,
},
Expand All @@ -47,8 +47,8 @@ func dataSourceSumologicRole() *schema.Resource {
func dataSourceSumologicRoleRead(d *schema.ResourceData, meta interface{}) error {
c := meta.(*Client)

var role *Role
var err error
var role *Role
if rid, ok := d.GetOk("id"); ok {
id := rid.(string)
role, err = c.GetRole(id)
Expand Down

0 comments on commit 4d45335

Please sign in to comment.