Manages a Cosmos DB Mongo User Definition.
resource "azurerm_resource_group" "example" {
name = "example-resources"
location = "West Europe"
}
resource "azurerm_cosmosdb_account" "example" {
name = "example-ca"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
offer_type = "Standard"
kind = "MongoDB"
capabilities {
name = "EnableMongo"
}
capabilities {
name = "EnableMongoRoleBasedAccessControl"
}
consistency_policy {
consistency_level = "Strong"
}
geo_location {
location = azurerm_resource_group.example.location
failover_priority = 0
}
}
resource "azurerm_cosmosdb_mongo_database" "example" {
name = "example-mongodb"
resource_group_name = azurerm_cosmosdb_account.example.resource_group_name
account_name = azurerm_cosmosdb_account.example.name
}
resource "azurerm_cosmosdb_mongo_user_definition" "example" {
cosmos_mongo_database_id = azurerm_cosmosdb_mongo_database.example.id
username = "myUserName"
password = "myPassword"
}
The following arguments are supported:
cosmos_mongo_database_id
- (Required) The resource ID of the Mongo DB. Changing this forces a new resource to be created.
username
- (Required) The username for the Mongo User Definition. Changing this forces a new resource to be created.
password
- (Required) The password for the Mongo User Definition.
inherited_role_names
- (Optional) A list of Mongo Roles that are inherited to the Mongo User Definition.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Cosmos DB Mongo User Definition.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the Cosmos DB Mongo User Definition.read
- (Defaults to 5 minutes) Used when retrieving the Cosmos DB Mongo User Definition.update
- (Defaults to 30 minutes) Used when updating the Cosmos DB Mongo User Definition.delete
- (Defaults to 30 minutes) Used when deleting the Cosmos DB Mongo User Definition.Cosmos DB Mongo User Definitions can be imported using the resource id
, e.g.
terraform import azurerm_cosmosdb_mongo_user_definition.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DocumentDB/databaseAccounts/account1/mongodbUserDefinitions/dbname1.username1