Provides a MongoDB Account resource.
For information about MongoDB Account and how to use it, see What is Account.
Basic Usage
variable "name" {
default = "terraform-example"
}
data "alicloud_mongodb_zones" "default" {}
locals {
index = length(data.alicloud_mongodb_zones.default.zones) - 1
zone_id = data.alicloud_mongodb_zones.default.zones[local.index].id
}
resource "alicloud_vpc" "default" {
vpc_name = var.name
cidr_block = "172.17.3.0/24"
}
resource "alicloud_vswitch" "default" {
vswitch_name = var.name
cidr_block = "172.17.3.0/24"
vpc_id = alicloud_vpc.default.id
zone_id = local.zone_id
}
resource "alicloud_mongodb_instance" "default" {
engine_version = "4.2"
db_instance_class = "dds.mongo.mid"
db_instance_storage = 10
vswitch_id = alicloud_vswitch.default.id
security_ip_list = ["10.168.1.12", "100.69.7.112"]
name = var.name
tags = {
Created = "TF"
For = "example"
}
}
resource "alicloud_mongodb_account" "default" {
account_name = "root"
account_password = "Example_123"
instance_id = alicloud_mongodb_instance.default.id
account_description = var.name
}
The following arguments are supported:
account_description
- (Optional) The description of the account.
http://
or https://
.2
to 256
characters in length, and can contain letters, digits, underscores (_), and hyphens (-).account_name
- (Required) The name of the account. Valid values: root
.account_password
- (Required, Sensitive) The Password of the Account.
!#$%^&*()_+-=
.8
to 32
characters in length.instance_id
- (Required, ForceNew) The ID of the instance.The following attributes are exported:
id
- The resource ID of Account. The value formats as <instance_id>:<account_name>
.status
- The status of the account. Valid values: Unavailable
, Available
.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 10 mins) Used when create the Account.update
- (Defaults to 10 mins) Used when update the Account.MongoDB Account can be imported using the id, e.g.
$ terraform import alicloud_mongodb_account.example <instance_id>:<account_name>