lgallard / terraform-aws-cognito-user-pool

Terraform module to create Amazon Cognito User Pools, configure its attributes and resources such as app clients, domain, resource servers. Amazon Cognito User Pools provide a secure user directory that scales to hundreds of millions of users.
Apache License 2.0
89 stars 95 forks source link

feat: add ui customization for clients #133

Closed DocMarten closed 3 months ago

DocMarten commented 3 months ago

This PR adds the option to define UI customizations for the clients.

clients = [
    {
      ...
      ui_customization_css = file("custom_style.css")
      ui_customization_image_file = filebase64("logo.png")
    }
  ]
lgallard commented 3 months ago

@DocMarten thanks for your PR. Merging now!