Skip to content

Commit

Permalink
Merge pull request #172 from jscannell/patch/adfs-domain-aliases
Browse files Browse the repository at this point in the history
Fix crash with domain_aliases for ADFS
  • Loading branch information
sergiught authored Jun 7, 2022
2 parents dd409cc + 02c2e41 commit b8b5fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth0/structure_auth0_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ func expandConnectionOptionsSAML(d ResourceData) *management.ConnectionOptionsSA
func expandConnectionOptionsADFS(d ResourceData) *management.ConnectionOptionsADFS {
return &management.ConnectionOptionsADFS{
TenantDomain: String(d, "tenant_domain"),
DomainAliases: Slice(d, "domain_aliases"),
DomainAliases: Set(d, "domain_aliases").List(),
LogoURL: String(d, "icon_url"),
ADFSServer: String(d, "adfs_server"),
EnableUsersAPI: Bool(d, "api_enable_users"),
Expand Down

0 comments on commit b8b5fb1

Please sign in to comment.