Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

authenticationCombinationConfiguration customisation missing from azuread_authentication_strength_policy #1636

Open
sandra-bee opened this issue Feb 4, 2025 · 0 comments

Comments

@sandra-bee
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritise this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritise the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

When creating a custom authentication strength, some of the authentication methods have advanced options that are configurable, e.g. for Passkeys (FIDO2), you can add allowed AAGUIDs. The resource that allows this customisation (authenticationCombinationConfiguration) is available in the Microsoft Graph REST API v1.0, but this functionality is not available in Terraform.

New or Affected Resource(s)

  • azuread_authentication_strength_policy

Potential Terraform Configuration

resource "azuread_authentication_strength_policy" "yubikey_strength" {
  display_name = "Yubikey"
  allowed_combinations = [
    "fido2"
  ]
  combination_configurations = {
    appliesToCombinations = "fido2"
    allowedAAGUIDs = ["de1e552d-db1d-4423-a619-566b625cdc84", "90a3ccdf-635c-4729-a248-9b709135078f"]
  }
}

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant