-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update keyvault secrets lifecycles * Update keyvault secrets Fix formating * Azure AD Role - Add msi support
- Loading branch information
1 parent
f499ef9
commit fb4fad6
Showing
8 changed files
with
24 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
module azuread_roles_applications { | ||
source = "./modules/azuread/roles" | ||
for_each = try(var.azuread_roles.azuread_apps, {}) | ||
|
||
object_id = module.azuread_applications[each.key].azuread_service_principal.object_id | ||
azuread_roles = each.value.roles | ||
} | ||
|
||
module azuread_roles_msi { | ||
source = "./modules/azuread/roles" | ||
for_each = try(var.azuread_roles.managed_identities, {}) | ||
|
||
object_id = module.managed_identities[each.key].principal_id | ||
azuread_roles = each.value.roles | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
variable object_id {} | ||
variable azuread_app_roles {} | ||
variable azuread_roles {} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters