Skip to content

Commit

Permalink
docs: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stebenz committed Dec 17, 2024
1 parent 357d2aa commit 026e827
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docs/resources/application_oidc.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ resource "zitadel_application_oidc" "default" {
org_id = data.zitadel_org.default.id
name = "applicationoidc"
redirect_uris = ["https://localhost.com"]
response_types = ["OIDC_RESPONSE_TYPE_CODE"]
grant_types = ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"]
post_logout_redirect_uris = ["https://localhost.com"]
redirect_uris = ["https://localhost.com"]
response_types = ["OIDC_RESPONSE_TYPE_CODE"]
grant_types = ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"]
post_logout_redirect_uris = ["https://localhost.com"]
app_type = "OIDC_APP_TYPE_WEB"
auth_method_type = "OIDC_AUTH_METHOD_TYPE_BASIC"
version = "OIDC_VERSION_1_0"
Expand All @@ -30,7 +30,7 @@ resource "zitadel_application_oidc" "default" {
access_token_role_assertion = false
id_token_role_assertion = false
id_token_userinfo_assertion = false
additional_origins = []
additional_origins = []
skip_native_app_success_page = false
}
```
Expand Down
10 changes: 5 additions & 5 deletions examples/provider/resources/application_oidc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ resource "zitadel_application_oidc" "default" {
org_id = data.zitadel_org.default.id

name = "applicationoidc"
redirect_uris = ["https://localhost.com"]
response_types = ["OIDC_RESPONSE_TYPE_CODE"]
grant_types = ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"]
post_logout_redirect_uris = ["https://localhost.com"]
redirect_uris = ["https://localhost.com"]
response_types = ["OIDC_RESPONSE_TYPE_CODE"]
grant_types = ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"]
post_logout_redirect_uris = ["https://localhost.com"]
app_type = "OIDC_APP_TYPE_WEB"
auth_method_type = "OIDC_AUTH_METHOD_TYPE_BASIC"
version = "OIDC_VERSION_1_0"
Expand All @@ -16,6 +16,6 @@ resource "zitadel_application_oidc" "default" {
access_token_role_assertion = false
id_token_role_assertion = false
id_token_userinfo_assertion = false
additional_origins = []
additional_origins = []
skip_native_app_success_page = false
}

0 comments on commit 026e827

Please sign in to comment.