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

Add variables for cosmos db custom roles #431

Merged
merged 1 commit into from
May 24, 2023
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
2 changes: 2 additions & 0 deletions caf_solution/local.database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ locals {
azurerm_redis_caches = var.azurerm_redis_caches
cosmos_dbs = var.cosmos_dbs
cosmosdb_sql_databases = var.cosmosdb_sql_databases
cosmosdb_role_mapping = var.cosmosdb_role_mapping
cosmosdb_role_definitions = var.cosmosdb_role_definitions
databricks_workspaces = var.databricks_workspaces
machine_learning_workspaces = var.machine_learning_workspaces
mariadb_databases = var.mariadb_databases
Expand Down
6 changes: 6 additions & 0 deletions caf_solution/variables.database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ variable "cosmos_dbs" {
variable "cosmosdb_sql_databases" {
default = {}
}
variable "cosmosdb_role_definitions" {
default = {}
}
variable "cosmosdb_role_mapping" {
default = {}
}
variable "database" {
description = "Database configuration objects"
default = {}
Expand Down