Skip to content

Instantly share code, notes, and snippets.

@stvdilln
Created January 14, 2021 17:19
Show Gist options
  • Save stvdilln/f0bb8d001efbd00484991c2bb9ee1dec to your computer and use it in GitHub Desktop.
Save stvdilln/f0bb8d001efbd00484991c2bb9ee1dec to your computer and use it in GitHub Desktop.
azurerm_cosmosdb_sql_database
resource "azurerm_cosmosdb_sql_database" "database" {
name = var.service_settings.name
resource_group_name = var.context.resource_group_name
account_name = var.service_settings.account_name
autoscale_settings {
max_throughput = var.service_settings.max_throughput
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment