forked from jackyzha0/quartz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c417d3e
commit 2bbd434
Showing
38 changed files
with
180 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This month was a pretty challenging one. I took the JLPT N4, met a good friend and caught a cold while basking in the cold. | ||
|
||
I didn't work on studying much for any tech certs but went deep into Japanese to gear up for the test. I found Kaishi deck to prep me for it and I feel like it went suprisingly well. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
I wanted to write this since I found that after decluttering all my physical possessions, I still found that I was faced with the ultimate challenge ahead of me, my digital landscape. | ||
|
||
Growing up in the age of internet, these devices were always around me. While the wonder of technology fueled my current endeavors, I did not know that this amazing invention would lead to periods of destruction and rebirth. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,3 @@ Now that I have registered for the N4, I will utilize the immersion method to le | |
|
||
|
||
|
||
|
Empty file.
File renamed without changes.
97 changes: 97 additions & 0 deletions
97
content/Okta Kelp Forest/Configure Salesforce to Okta using SAML 2.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
--- | ||
tags: | ||
- okta | ||
- iam | ||
--- | ||
This is a follow along from Bryan Ly's Okta Course on Udemy. | ||
|
||
# Objectives | ||
Create a Salesforce Developer Account | ||
Connect Salesforce to Okta using SAML 2.0 | ||
Test SSO from Okta to Salesforce | ||
|
||
# Create a Salesforce Developer Account | ||
https://developer.salesforce.com/signup | ||
|
||
Enter your credentials to gain access to Salesforce: | ||
|
||
![[Pasted image 20241218112341.png]] | ||
|
||
After submitting the form, go to the email used and look for the account verification: | ||
|
||
![[Pasted image 20241218112812.png]] | ||
|
||
Reset your password and login to Salesforce: | ||
|
||
![[Pasted image 20241218113057.png]] | ||
|
||
# Add Salesforce in Okta | ||
In Okta, go to Applications > Browse App Catalog > Search for Salesforce: | ||
|
||
![[Pasted image 20241218113355.png]] | ||
|
||
![[Pasted image 20241218113514.png]] | ||
|
||
Select Salesforce and click on Add Integration: | ||
|
||
![[Pasted image 20241218113604.png]] | ||
|
||
In the Sign On options, Select 'SAML 2.0' and for Application username format select 'Custom': | ||
|
||
Enter the Okta Expression Language ``` | ||
``` | ||
substringBefore(user.email, '@')+"YOURDOMAINHERE" | ||
``` | ||
|
||
|
||
![[Pasted image 20241218114910.png]] | ||
|
||
Select Done. | ||
|
||
# Configure Salesforce Settings | ||
|
||
In the top left search box, search for Single Sign-On settings: | ||
|
||
![[Pasted image 20241218121556.png]] | ||
|
||
For first time setup, enable SAML by clicking the Edit and tick the 'SAML Enabled', click save: | ||
|
||
![[Pasted image 20241218122144.png]] | ||
|
||
![[Pasted image 20241218122216.png]] | ||
|
||
Create a new settings by selecting the 'New' button: | ||
|
||
|
||
Inside the Okta portal in the Salesforce application, there is a SAML setup guide, there will be data we need to enter into Salesforce. | ||
|
||
![[Pasted image 20241218123231.png]] | ||
![[Pasted image 20241218123558.png]] | ||
|
||
Cross reference and fill out the data in Salesforce: | ||
|
||
![[Pasted image 20241218124149.png]] | ||
|
||
After saving, take note of the Endpoints section, we will use this to input into the application section in Okta: | ||
|
||
![[Pasted image 20241218124936.png]] | ||
|
||
In Okta, paste the data into Advanced Sign-On Settings: | ||
|
||
![[Pasted image 20241218125155.png]] | ||
|
||
Assign users to the Salesforce application in Okta. | ||
![[Pasted image 20241218130257.png]] | ||
We are now ready to test our integration. | ||
|
||
# Test Connection | ||
In the user portal, select the Salesforce.com app: | ||
|
||
![[Pasted image 20241218131053.png]] | ||
|
||
It should direct you straight into the Salesforce portal: | ||
|
||
![[Pasted image 20241218131139.png]] | ||
# Things to Note | ||
When assigning users to Salesforce in Okta, I had an issue where the user did not have the '@' sign added to their username so Salesforce ran into an error. We can fix this during the user assignment process. | ||
|
Empty file.
7 changes: 7 additions & 0 deletions
7
content/Okta Kelp Forest/Service Provider Initiated SAML Salesforce.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
To enable the provider initiated SAML, we need to have a domain | ||
|
||
|
||
|
||
|
||
# Login from Salesforce | ||
Now that we have configured the settings, from the Salesforce login page, we can select the 'Login using Okta' |
5 changes: 5 additions & 0 deletions
5
content/Okta Kelp Forest/WIP Add and configure a SWA Application.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# End user flow | ||
|
||
# Administrator flow | ||
|
||
# AIW flow |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
IdentityIQ | ||
[[WIP Installing SailPoint IdentityIQ]] | ||
[[Adding an Authoritative Source]] | ||
Identity Life Cycle | ||
Automatic Role Configuration | ||
Application Configuration and Request | ||
Role Mining | ||
Access Certification | ||
Separation of Duties (Toxic Configuration) |
Oops, something went wrong.