Skip to content

Commit

Permalink
New josso attribute profile type
Browse files Browse the repository at this point in the history
  • Loading branch information
sgonzalezoyuela committed Jun 23, 2023
1 parent 49581f7 commit 453d4ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions iamtf/resource_iamtf_app_oidc.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ func ResourceOidcRp() *schema.Resource {
Required: true,
Description: "list of OIDC response type strings. Valid values: TOKEN, CODE, ID_TOKEN.",
},
// TODO : support response_mode (not supported by server)
"response_modes": {
Type: schema.TypeSet,
Elem: &schema.Schema{
Expand Down
2 changes: 1 addition & 1 deletion iamtf/resource_iamtf_idp.go
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ func idpAttributeProfileSchema() *schema.Schema {
Type: schema.TypeString,
Description: "Attribute profile to use",
Optional: true,
ValidateDiagFunc: stringInSlice([]string{"JOSSO", "BASIC", "ONE_TO_ONE", "CUSTOM"}),
ValidateDiagFunc: stringInSlice([]string{"JOSSO", "BASIC", "ONE_TO_ONE", "CUSTOM", "EXTENSION"}),
Default: "JOSSO",
},
"include_unmapped_claims": {
Expand Down

0 comments on commit 453d4ab

Please sign in to comment.