We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Terraform v1.9.3 on windows_amd64
azuread_group_role_management_policy
resource "azuread_group" "pimgroup1" { display_name = "glob_gsec_pim_admins_roles_workplace" security_enabled = true assignable_to_role = true prevent_duplicate_names = true } resource "azuread_group" "pimapprover" { display_name = "glob_gsec_pimapprovers" security_enabled = true prevent_duplicate_names = true } resource "azuread_group_role_management_policy" "pimpolicy1" { group_id = split("/", azuread_group.pimgroup1.id)[2] role_id = "member" activation_rules { maximum_duration = "PT16H" require_justification = true require_ticket_info = true required_conditional_access_authentication_context = "c2" } } resource "azuread_privileged_access_group_eligibility_schedule" "example" { for_each = toset(local.user_ids) group_id = split("/", azuread_group.pimgroup1.id)[2] principal_id = split("/", each.value)[2] assignment_type = "member" duration = "P30D" justification = "as requested" }
https://gist.github.com/SuryenduB/0a81d846643fc653d1b8e9a773e69907
Authentication Context is not set.
terraform apply
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Community Note
Terraform (and AzureAD Provider) Version
Terraform v1.9.3
on windows_amd64
Affected Resource(s)
azuread_group_role_management_policy
Terraform Configuration Files
Debug Output
https://gist.github.com/SuryenduB/0a81d846643fc653d1b8e9a773e69907
Panic Output
Expected Behavior
Expected behaviour authentication to be set.Actual Behavior
Authentication Context is not set.
Steps to Reproduce
terraform apply
Important Factoids
References
The text was updated successfully, but these errors were encountered: