Skip to content
New issue

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

Added cognitive services accounts, search services and cosmos DBs in dynamic_app_config_combined_objects #2088

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ azuread_applications = {
admin_consent_description = "Allow to administer app2."
admin_consent_display_name = "Administer app2"
enabled = true
type = "Admin"
value = "app2"
type = "Admin"
value = "app2"
}
]
}
Expand Down
3 changes: 3 additions & 0 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ locals {
managed_identities = local.combined_objects_managed_identities
resource_groups = local.combined_objects_resource_groups
storage_accounts = local.combined_objects_storage_accounts
cognitive_services_accounts = local.combined_objects_cognitive_services_accounts
search_services = local.combined_objects_search_services
cosmos_dbs = local.combined_objects_cosmos_dbs
}

global_settings = merge({
Expand Down
14 changes: 13 additions & 1 deletion modules/search_service/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,16 @@ output "tags" {

output "id" {
value = azurerm_search_service.search_service.id
}
}

output "primary_key" {
value = azurerm_search_service.search_service.primary_key
}

output "secondary_key" {
value = azurerm_search_service.search_service.secondary_key
}

output "query_keys" {
value = azurerm_search_service.search_service.query_keys
}
4 changes: 4 additions & 0 deletions modules/security/managed_identity/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ output "rbac_id" {
output "name" {
value = azurerm_user_assigned_identity.msi.name
}

output "tenant_id" {
value = azurerm_user_assigned_identity.msi.tenant_id
}
Loading