Skip to content

Commit

Permalink
[3/3] DXCDT-232: Add validation on identity_api for waad connections (#…
Browse files Browse the repository at this point in the history
…361)

* Bump go-auth0 to v0.12.0

* Add validation on identity_api for waad connections

* [2/3] DXCDT-234: Fix update behavior of client_metadata (#362)

* Fix update behavior or client_metadata

* [1/3] DXCDT-243: Improve precision of branding theme fields with float64 instead of int (#369)

Improve precision of branding theme fields with float64 instead of int
  • Loading branch information
sergiught authored Oct 19, 2022
1 parent 22350a8 commit 82aa8d3
Show file tree
Hide file tree
Showing 14 changed files with 854 additions and 162 deletions.
40 changes: 20 additions & 20 deletions docs/resources/branding_theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ resource "auth0_branding_theme" "my_theme" {

Required:

- `button_border_radius` (Number) Button border radius.
- `button_border_weight` (Number) Button border weight.
- `buttons_style` (String) Buttons style.
- `input_border_radius` (Number) Input border radius.
- `input_border_weight` (Number) Input border weight.
- `inputs_style` (String) Inputs style.
- `button_border_radius` (Number) Button border radius. Value needs to be between `1` and `10`.
- `button_border_weight` (Number) Button border weight. Value needs to be between `0` and `10`.
- `buttons_style` (String) Buttons style. Available options: `pill`, `rounded`, `sharp`.
- `input_border_radius` (Number) Input border radius. Value needs to be between `0` and `10`.
- `input_border_weight` (Number) Input border weight. Value needs to be between `0` and `3`.
- `inputs_style` (String) Inputs style. Available options: `pill`, `rounded`, `sharp`.
- `show_widget_shadow` (Boolean) Show widget shadow.
- `widget_border_weight` (Number) Widget border weight.
- `widget_corner_radius` (Number) Widget corner radius.
- `widget_border_weight` (Number) Widget border weight. Value needs to be between `0` and `10`.
- `widget_corner_radius` (Number) Widget corner radius. Value needs to be between `0` and `50`.


<a id="nestedblock--colors"></a>
Expand Down Expand Up @@ -169,7 +169,7 @@ Required:
- `input_labels` (Block List, Min: 1, Max: 1) Input labels. (see [below for nested schema](#nestedblock--fonts--input_labels))
- `links` (Block List, Min: 1, Max: 1) Links. (see [below for nested schema](#nestedblock--fonts--links))
- `links_style` (String) Links style.
- `reference_text_size` (Number) Reference text size.
- `reference_text_size` (Number) Reference text size. Value needs to be between `12` and `24`.
- `subtitle` (Block List, Min: 1, Max: 1) Subtitle. (see [below for nested schema](#nestedblock--fonts--subtitle))
- `title` (Block List, Min: 1, Max: 1) Title. (see [below for nested schema](#nestedblock--fonts--title))

Expand All @@ -179,7 +179,7 @@ Required:
Required:

- `bold` (Boolean) Body text bold.
- `size` (Number) Body text size.
- `size` (Number) Body text size. Value needs to be between `0` and `150`.


<a id="nestedblock--fonts--buttons_text"></a>
Expand All @@ -188,7 +188,7 @@ Required:
Required:

- `bold` (Boolean) Buttons text bold.
- `size` (Number) Buttons text size.
- `size` (Number) Buttons text size. Value needs to be between `0` and `150`.


<a id="nestedblock--fonts--input_labels"></a>
Expand All @@ -197,7 +197,7 @@ Required:
Required:

- `bold` (Boolean) Input labels bold.
- `size` (Number) Input labels size.
- `size` (Number) Input labels size. Value needs to be between `0` and `150`.


<a id="nestedblock--fonts--links"></a>
Expand All @@ -206,7 +206,7 @@ Required:
Required:

- `bold` (Boolean) Links bold.
- `size` (Number) Links size.
- `size` (Number) Links size. Value needs to be between `0` and `150`.


<a id="nestedblock--fonts--subtitle"></a>
Expand All @@ -215,7 +215,7 @@ Required:
Required:

- `bold` (Boolean) Subtitle bold.
- `size` (Number) Subtitle size.
- `size` (Number) Subtitle size. Value needs to be between `0` and `150`.


<a id="nestedblock--fonts--title"></a>
Expand All @@ -224,7 +224,7 @@ Required:
Required:

- `bold` (Boolean) Title bold.
- `size` (Number) Title size.
- `size` (Number) Title size. Value needs to be between `75` and `150`.



Expand All @@ -235,19 +235,19 @@ Required:

- `background_color` (String) Background color.
- `background_image_url` (String) Background image url.
- `page_layout` (String) Page layout.
- `page_layout` (String) Page layout. Available options: `center`, `left`, `right`.


<a id="nestedblock--widget"></a>
### Nested Schema for `widget`

Required:

- `header_text_alignment` (String) Header text alignment.
- `logo_height` (Number) Logo height.
- `logo_position` (String) Logo position.
- `header_text_alignment` (String) Header text alignment. Available options: `center`, `left`, `right`.
- `logo_height` (Number) Logo height. Value needs to be between `1` and `100`.
- `logo_position` (String) Logo position. Available options: `center`, `left`, `right`, `none`.
- `logo_url` (String) Logo url.
- `social_buttons_layout` (String) Social buttons layout.
- `social_buttons_layout` (String) Social buttons layout. Available options: `bottom`, `top`.

## Import

Expand Down
2 changes: 1 addition & 1 deletion docs/resources/connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ Optional:
- `gateway_authentication` (Block List, Max: 1) Defines the parameters used to generate the auth token for the custom gateway. (see [below for nested schema](#nestedblock--options--gateway_authentication))
- `gateway_url` (String) Defines a custom sms gateway to use instead of Twilio.
- `icon_url` (String) Icon URL.
- `identity_api` (String) Identity API.
- `identity_api` (String) Azure AD Identity API. Available options are: `microsoft-identity-platform-v2.0` or `azure-active-directory-v1.0`.
- `idp_initiated` (Block List, Max: 1) Configuration options for IDP Initiated Authentication. This is an object with the properties: `client_id`, `client_protocol`, and `client_authorize_query`. (see [below for nested schema](#nestedblock--options--idp_initiated))
- `import_mode` (Boolean) Indicates whether you have a legacy user store and want to gradually migrate those users to the Auth0 user store.
- `ips` (Set of String) A list of IPs.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/auth0/terraform-provider-auth0
go 1.18

require (
github.com/auth0/go-auth0 v0.11.0
github.com/auth0/go-auth0 v0.12.0
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/terraform-plugin-docs v0.13.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj
github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI=
github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/auth0/go-auth0 v0.11.0 h1:mxqbDMe91wjX3hvtPU/T7BdJqjgNQUJ02ZaROm/WRKA=
github.com/auth0/go-auth0 v0.11.0/go.mod h1:XtmeQ7vZzyss3AAaLXMpupn28Y1Xj/DCt1IGEJRZ2gY=
github.com/auth0/go-auth0 v0.12.0 h1:ssMGNrK3Nq9s8kduBRyZX7vCXKp5VckFjY4v2G7EBjs=
github.com/auth0/go-auth0 v0.12.0/go.mod h1:XtmeQ7vZzyss3AAaLXMpupn28Y1Xj/DCt1IGEJRZ2gY=
github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 h1:0NmehRCgyk5rljDQLKUO+cRJCnduDyn11+zGZIc9Z48=
github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0/go.mod h1:6L7zgvqo0idzI7IO8de6ZC051AfXb5ipkIJ7bIA2tGA=
github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
Expand Down
Loading

0 comments on commit 82aa8d3

Please sign in to comment.