Skip to content

Commit

Permalink
azurerm_healthcare_service - extend range of the cosmosdb_throughpu…
Browse files Browse the repository at this point in the history
…t to a maximum of `100000` (#20755)
  • Loading branch information
bencsr authored Mar 2, 2023
1 parent 72ef336 commit 52874b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func resourceHealthcareService() *pluginsdk.Resource {
Type: pluginsdk.TypeInt,
Optional: true,
Default: 1000,
ValidateFunc: validation.IntBetween(1, 10000),
ValidateFunc: validation.IntBetween(1, 100000),
},

"cosmosdb_key_vault_key_versionless_id": {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/healthcare_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The following arguments are supported:

* `access_policy_object_ids` - (Optional) A set of Azure object IDs that are allowed to access the Service. If not configured, the default value is the object id of the service principal or user that is running Terraform.
* `authentication_configuration` - (Optional) An `authentication_configuration` block as defined below.
* `cosmosdb_throughput` - (Optional) The provisioned throughput for the backing database. Range of `400`-`10000`. Defaults to `400`.
* `cosmosdb_throughput` - (Optional) The provisioned throughput for the backing database. Range of `400`-`100000`. Defaults to `1000`.
* `cosmosdb_key_vault_key_versionless_id` - (Optional) A versionless Key Vault Key ID for CMK encryption of the backing database. Changing this forces a new resource to be created.

~> **Please Note** In order to use a `Custom Key` from Key Vault for encryption you must grant Azure Cosmos DB Service access to your key vault. For instructions on how to configure your Key Vault correctly please refer to the [product documentation](https://docs.microsoft.com/azure/cosmos-db/how-to-setup-cmk#add-an-access-policy-to-your-azure-key-vault-instance)
Expand Down

0 comments on commit 52874b4

Please sign in to comment.