Skip to content

Commit

Permalink
🐛 fix missing id implementation for domains (#2599)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuskimmina authored Nov 17, 2023
1 parent be27f84 commit 7ed8f11
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions providers/atlassian/resources/atlassian_admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ func (a *mqlAtlassianAdminOrganization) domains() ([]interface{}, error) {
return res, nil
}

func (a *mqlAtlassianAdminOrganizationDomain) id() (string, error) {
return a.Id.Data, nil
}

func (a *mqlAtlassianAdminOrganizationPolicy) id() (string, error) {
return a.Id.Data, nil
}
Expand Down

0 comments on commit 7ed8f11

Please sign in to comment.