Skip to content

change callbacks to webhooks #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,3 @@ echo "Test in browser: $API_ENDPOINT"
echo ""
echo "To Delete the Stack use this command"
echo "aws cloudformation delete-stack --stack-name $STACK_NAME &"





1 change: 0 additions & 1 deletion json_schema/oidc_callback_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,3 @@
}
}
}

6 changes: 3 additions & 3 deletions oidc_extension_callback.yaml → oidc_extension_webhook.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AWSTemplateFormatVersion: '2010-09-09'
Description: AWS CloudFormation template that contains a single Lambda function behind
an API Gateway for Okta Sync Callbacks
an API Gateway for Okta Sync Webhooks
Resources:
CommandsLambda:
Type: AWS::Lambda::Function
Expand Down Expand Up @@ -57,7 +57,7 @@ Resources:

callback(null, response);
};
Description: A Lambda that returns Okta Commands for testing sync callbacks
Description: A Lambda that returns Okta Commands for testing sync webhooks
FunctionName: CommandsLambda
Handler: index.handler
Role: !GetAtt 'LambdaExecutionRole.Arn'
Expand All @@ -80,7 +80,7 @@ Resources:
Type: AWS::ApiGateway::RestApi
Properties:
Name: Commands API
Description: API used for returning commands to okta sync callback requests
Description: API used for returning commands to okta sync webhook requests
FailOnWarnings: true
LambdaPermission:
Type: AWS::Lambda::Permission
Expand Down
4 changes: 2 additions & 2 deletions postman/samlExtensibility.postman_collection
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "165ebacc-514e-1911-3ae7-453ed2f0b194",
"name": "samlExtensibility",
"description": "Postman request to configure callbacks for SAML Extensibility",
"description": "Postman request to configure webhooks for SAML Extensibility",
"order": [
"14e174ac-3e5a-26b3-6207-cd5a7e4f1a2d"
],
Expand Down Expand Up @@ -44,7 +44,7 @@
"data": [],
"dataMode": "raw",
"name": "{{url}}/api/v1/callbacks",
"description": "Configure Callback for SAML Apps",
"description": "Configure Webhook for SAML Apps",
"descriptionFormat": "html",
"time": 1533070332435,
"version": 2,
Expand Down
7 changes: 3 additions & 4 deletions pre_registration_callback.yaml → registration_webhook.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AWSTemplateFormatVersion: '2010-09-09'
Description: AWS CloudFormation template that contains a single Lambda function behind
an API Gateway for Okta Sync Callbacks
an API Gateway for Okta Sync Webhooks
Resources:
CommandsLambda:
Type: AWS::Lambda::Function
Expand Down Expand Up @@ -39,7 +39,7 @@ Resources:

callback(null, response);
};
Description: A Lambda that returns Okta Commands for testing sync callbacks
Description: A Lambda that returns Okta Commands for testing sync webhooks
FunctionName: CommandsLambda
Handler: index.handler
Role: !GetAtt 'LambdaExecutionRole.Arn'
Expand All @@ -62,7 +62,7 @@ Resources:
Type: AWS::ApiGateway::RestApi
Properties:
Name: Commands API
Description: API used for returning commands to okta sync callback requests
Description: API used for returning commands to okta sync webhook requests
FailOnWarnings: true
LambdaPermission:
Type: AWS::Lambda::Permission
Expand Down Expand Up @@ -152,4 +152,3 @@ Outputs:
RootUrl:
Description: Root URL of the API gateway
Value: !Sub 'https://${CommandsApi}.execute-api.${AWS::Region}.amazonaws.com'

6 changes: 3 additions & 3 deletions saml_extension_callback.yaml → saml_extension_webhook.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AWSTemplateFormatVersion: '2010-09-09'
Description: AWS CloudFormation template that contains a single Lambda function behind
an API Gateway for Okta Sync Callbacks
an API Gateway for Okta Sync Webhooks
Resources:
CommandsLambda:
Type: AWS::Lambda::Function
Expand Down Expand Up @@ -54,7 +54,7 @@ Resources:
};
callback(null, response);
};
Description: A Lambda that returns Okta Commands for testing sync callbacks
Description: A Lambda that returns Okta Commands for testing sync webhooks
FunctionName: CommandsLambda
Handler: index.handler
Role: !GetAtt 'LambdaExecutionRole.Arn'
Expand All @@ -77,7 +77,7 @@ Resources:
Type: AWS::ApiGateway::RestApi
Properties:
Name: Commands API
Description: API used for returning commands to okta sync callback requests
Description: API used for returning commands to okta sync webhook requests
FailOnWarnings: true
LambdaPermission:
Type: AWS::Lambda::Permission
Expand Down
6 changes: 3 additions & 3 deletions sync_callback.yaml → sync_webhook.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AWSTemplateFormatVersion: '2010-09-09'
Description: AWS CloudFormation template that contains a single Lambda function behind
an API Gateway for Okta Sync Callbacks
an API Gateway for Okta Sync Webhooks
Resources:
CommandsLambda:
Type: AWS::Lambda::Function
Expand Down Expand Up @@ -33,7 +33,7 @@ Resources:

callback(null, response);
};
Description: A Lambda that returns Okta Commands for testing sync callbacks
Description: A Lambda that returns Okta Commands for testing sync webhooks
FunctionName: CommandsLambda
Handler: index.handler
Role: !GetAtt 'LambdaExecutionRole.Arn'
Expand All @@ -56,7 +56,7 @@ Resources:
Type: AWS::ApiGateway::RestApi
Properties:
Name: Commands API
Description: API used for returning commands to okta sync callback requests
Description: API used for returning commands to okta sync webhook requests
FailOnWarnings: true
LambdaPermission:
Type: AWS::Lambda::Permission
Expand Down