Hi all. I am trying to make it so my team uses Terraform to carry out our Auth0 tasks rather than using the dashboard. One thing I am doing right now is creating modules for branding changes, so I’m using the resource ‘auth0_prompt_custom_text’ as per the docs (auth0_prompt_custom_text | Resources | auth0/auth0 | Terraform | Terraform Registry). It’s good that there is the ‘language’ field to distinguish between the same prompt for different for languages, but is there a way to do this for screen? In the dashboard for our mfa-sms prompt, there is of course a drop-down menu for ‘language’ but also one one for ‘screen’ with options like ‘mfa-sms-list’ and ‘mfa-sms-challenge‘. Given that different screens for the same prompts have different JSON schema, I want to be able to update any one of them via terraform. This is what I have so far, so please let me know if it can be refined accordingly: ‘module “mfa_sms_es” {
source = “./modules/prompt_custom_text”
prompt = “mfa-sms”
language = “es”
body = “{}”
}‘