Skip to content

Commit

Permalink
Remove iga-* triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket authored and kushalshit27 committed Oct 31, 2024
1 parent 7dc58e0 commit 6fe7f9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cli/terraform_fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ func (f *tenantResourceFetcher) FetchData(_ context.Context) (importDataList, er

func (f *triggerActionsResourceFetcher) FetchData(ctx context.Context) (importDataList, error) {
var data importDataList
triggers := []string{"post-login", "credentials-exchange", "pre-user-registration", "post-user-registration", "post-change-password", "send-phone-message", "password-reset-post-challenge", "iga-approval", "iga-certification", "iga-fulfillment-assignment", "iga-fulfillment-execution"}
triggers := []string{"post-login", "credentials-exchange", "pre-user-registration", "post-user-registration", "post-change-password", "send-phone-message", "password-reset-post-challenge"}

for _, trigger := range triggers {
res, err := f.api.Action.Bindings(ctx, trigger)
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/terraform_fetcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1658,7 +1658,7 @@ func TestTriggerActionsResourceFetcher_FetchData(t *testing.T) {
defer ctrl.Finish()
actionAPI := mock.NewMockActionAPI(ctrl)

for _, trigger := range []string{"post-login", "credentials-exchange", "pre-user-registration", "post-user-registration", "post-change-password", "send-phone-message", "password-reset-post-challenge", "iga-approval", "iga-certification", "iga-fulfillment-assignment", "iga-fulfillment-execution"} {
for _, trigger := range []string{"post-login", "credentials-exchange", "pre-user-registration", "post-user-registration", "post-change-password", "send-phone-message", "password-reset-post-challenge"} {
bindings := []*management.ActionBinding{}

if trigger == "pre-user-registration" {
Expand Down

0 comments on commit 6fe7f9f

Please sign in to comment.