Skip to content
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

Remove the profile column from table okta_application. Closes #38 #42

Merged
merged 1 commit into from
Dec 15, 2021

Conversation

c0d3r-arnab
Copy link
Contributor

Example query results

Results
> select
  name,
  id,
  label,
  created,
  status,
  sign_on_mode
from
  okta_application;
+---------------------+----------------------+----------------------+----------------------+--------+----------------+
| name                | id                   | label                | created              | status | sign_on_mode   |
+---------------------+----------------------+----------------------+----------------------+--------+----------------+
| okta_enduser        | 0oa1kchdrfcXTbEzV5d7 | Okta Dashboard       | 2021-08-26T04:26:36Z | ACTIVE | OPENID_CONNECT |
| saasure             | 0oa1kchdmerpZir9y5d7 | Okta Admin Console   | 2021-08-26T04:26:28Z | ACTIVE | OPENID_CONNECT |
| okta_browser_plugin | 0oa1kcigd9Kob07k05d7 | Okta Browser Plugin  | 2021-08-26T04:26:36Z | ACTIVE | OPENID_CONNECT |
| oidc_client         | 0oa1mf49z9iZurdzA5d7 | Service Client Name  | 2021-08-31T12:31:44Z | ACTIVE | OPENID_CONNECT |
| oidc_client         | 0oa1mf9l3dw26foa25d7 | Test Private KeyPair | 2021-08-31T12:46:30Z | ACTIVE | OPENID_CONNECT |
+---------------------+----------------------+----------------------+----------------------+--------+----------------+
> select
  name,
  id,
  label,
  created,
  status,
  sign_on_mode
from
  okta_application
where
  sign_on_mode = 'SAML_2_0';
+------+----+-------+---------+--------+--------------+
| name | id | label | created | status | sign_on_mode |
+------+----+-------+---------+--------+--------------+
+------+----+-------+---------+--------+--------------+
> select
  id,
  label,
  name,
  sign_on_mode,
  status
from
  okta_application as app
where
  filter = 'user.id eq "00u1kcigdvWtR96HY5d7"';
+----------------------+----------------------+-------------+----------------+--------+
| id                   | label                | name        | sign_on_mode   | status |
+----------------------+----------------------+-------------+----------------+--------+
| 0oa1mf9l3dw26foa25d7 | Test Private KeyPair | oidc_client | OPENID_CONNECT | ACTIVE |
| 0oa1mf49z9iZurdzA5d7 | Service Client Name  | oidc_client | OPENID_CONNECT | ACTIVE |
+----------------------+----------------------+-------------+----------------+--------+
> select
  id,
  label,
  name,
  sign_on_mode,
  status
from
  okta_application
where
  filter = 'group.id eq "00g33kzj6xOZvlBUQ5d7"';
+----------------------+----------------------+-------------+----------------+--------+
| id                   | label                | name        | sign_on_mode   | status |
+----------------------+----------------------+-------------+----------------+--------+
| 0oa1mf9l3dw26foa25d7 | Test Private KeyPair | oidc_client | OPENID_CONNECT | ACTIVE |
+----------------------+----------------------+-------------+----------------+--------+

Copy link

@bigdatasourav bigdatasourav left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@bigdatasourav bigdatasourav merged commit 7b07873 into main Dec 15, 2021
@bigdatasourav bigdatasourav deleted the issue-38 branch December 15, 2021 04:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

The profile column in the okta_application table does not contain any information
2 participants