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

[TestCase] Fix TestAccCosmosDbPostgreSQLCluster_complete and TestAccCosmosDbPostgreSQLCluster_update #24649

Merged
merged 2 commits into from
Jan 26, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ resource "azurerm_cosmosdb_postgresql_cluster" "test" {
node_server_edition = "MemoryOptimized"
sql_version = "14"
preferred_primary_zone = 1
node_storage_quota_in_mb = 131072
node_vcores = 2
node_storage_quota_in_mb = 524288
node_vcores = 4
shards_on_coordinator_enabled = true

tags = {
Expand All @@ -222,7 +222,7 @@ resource "azurerm_cosmosdb_postgresql_cluster" "test" {
location = azurerm_resource_group.test.location

administrator_login_password = "H@Sh1CoR4!"
coordinator_storage_quota_in_mb = 262144
coordinator_storage_quota_in_mb = 524288
coordinator_vcore_count = 4
node_count = 2

Expand All @@ -241,7 +241,7 @@ resource "azurerm_cosmosdb_postgresql_cluster" "test" {
node_server_edition = "GeneralPurpose"
sql_version = "16"
preferred_primary_zone = 2
node_storage_quota_in_mb = 262144
node_storage_quota_in_mb = 524288
node_vcores = 4
shards_on_coordinator_enabled = false

Expand Down
Loading