Azure / terraform-azurerm-avm-res-authorization-roleassignment

AVM Terraform module for role assignments
https://registry.terraform.io/modules/Azure/avm-res-authorization-roleassignment
MIT License
4 stars 2 forks source link

Feature Request: Add shortcut variables for simple use cases #16

Open jaredfholgate opened 5 months ago

jaredfholgate commented 5 months ago

Consider adding shortcut variables for when a principal id and role definition name / id are supplied to support a less verbose option for that scenario.

E.g.

simple_role_assignments = {
  resource_group_contributors = {
     scope = "######"
     role_dfinition_name = "Contributor"
     principal_ids =  [ "####", "####" ]
  }
}