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
There is no resource in this provider to configure automatic assignment policy for an access package.
resource "azuread_access_package_catalog" "example" { display_name = "example-catalog" description = "Example catalog" } resource "azuread_access_package" "example" { catalog_id = azuread_access_package_catalog.example.id display_name = "access-package" description = "Access Package" } resource "azuread_access_package_auto_assignment_policy" "example" { access_package_id = azuread_access_package.example.id display_name = "auto-assignment-policy" description = "My auto assignment policy" automatically_create_assignments = true automatically_remove_assignments = true duration_before_automatic_removal_in_days = 7 rule_syntax = "{user.Department -eq \"Sales\"}" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Community Note
Description
There is no resource in this provider to configure automatic assignment policy for an access package.
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: