Skip to content

Commit

Permalink
allow integration action import from integration id (#171)
Browse files Browse the repository at this point in the history
Co-authored-by: ilteriş tabak <[email protected]>
  • Loading branch information
ilteristabak and ilteriş tabak authored Aug 21, 2020
1 parent a554bd6 commit 5c049d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.4.6 (August 21, 2020)

BUGFIX:
* **Integration Actions :** allow integration action import(#151)

## 0.4.5 (August 20, 2020)

IMPROVEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion opsgenie/resource_opsgenie_integration_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ func resourceOpsgenieIntegrationActionRead(d *schema.ResourceData, meta interfac

result, err := client.GetActions(context.Background(), &integration.GetIntegrationActionsRequest{
BaseRequest: ogClient.BaseRequest{},
Id: d.Get("integration_id").(string),
Id: d.Id(),
})
if err != nil {
return err
Expand Down

0 comments on commit 5c049d5

Please sign in to comment.