blinqas / station

Use Station to create secure and automated environments for your workloads in Azure
MIT License
7 stars 1 forks source link

Feature: role assignments on groups #131

Closed kimfy closed 4 months ago

kimfy commented 5 months ago

Feature Description

Assign roles to Entra ID groups.

Problem and Motivation

I want to give higher-level role assignments to groups during creation with Station.

Possible Implementation

groups = {
  monitoring_reader = {
    display_name     = "Station - Monitoring Reader (Subscription-level)"
    security_enabled = true
    role_assignments = {
      monitoring_reader = {
        role_definition_name = "Monitoring Reader"
        scope                = data.azurerm_subscription.current.id
      }
    }
  }
}
kimfy commented 5 months ago

Resolved in https://github.com/blinqas/station/pull/126