Skip to content

Commit

Permalink
Updated documentation to include second example
Browse files Browse the repository at this point in the history
Incldued a second example which includes all of the possible allowed_combinations.
  • Loading branch information
Threpio committed Nov 3, 2023
1 parent 0d44cb6 commit 8214c7d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docs/resources/authentication_strength_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,34 @@ resource "azuread_authentication_strength_policy" "example" {
"password",
]
}
resource "azuread_authentication_strength_policy" "example2" {
display_name = "Example Authentication Strength Policy"
description = "Policy for demo purposes with all possible combinations"
allowed_combinations = [
"fido2",
"password",
"deviceBasedPush",
"temporaryAccessPassOneTime",
"federatedMultiFactor",
"federatedSingleFactor",
"hardwareOath,federatedSingleFactor",
"microsoftAuthenticatorPush,federatedSingleFactor",
"password,hardwareOath",
"password,microsoftAuthenticatorPush",
"password,sms",
"password,softwareOath",
"password,voice",
"sms",
"sms,federatedSingleFactor",
"softwareOath,federatedSingleFactor",
"temporaryAccessPassMultiUse",
"voice,federatedSingleFactor",
"windowsHelloForBusiness",
"x509CertificateMultiFactor",
"x509CertificateSingleFactor",
]
}
```

## Argument Reference
Expand Down

0 comments on commit 8214c7d

Please sign in to comment.