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

Visiativ/feat/dynamic app config combined objects #46

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,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