English | 简体中文
Terraform module which creates RDS instance(s) on Alibaba Cloud.
These types of resources are supported:
Name | Version |
---|---|
terraform | >= 0.13.0 |
alicloud | >= 1.56.0 |
module "mysql" {
source = "terraform-alicloud-modules/rds/alicloud"
engine = "MySQL"
engine_version = "8.0"
connection_prefix = "developmentabc"
vswitch_id = "vsw-bp1tili2u5kpgdk84osjk"
instance_storage = 20
period = 1
instance_type = "rds.mysql.s2.large"
instance_name = "myDBInstance"
instance_charge_type = "Postpaid"
security_ips = [
"11.193.54.0/24",
"121.43.18.0/24"
]
tags = {
Created = "Terraform"
Environment = "dev"
}
###############
#backup_policy#
###############
preferred_backup_period = ["Monday", "Wednesday"]
preferred_backup_time = "00:00Z-01:00Z"
backup_retention_period = 7
log_backup_retention_period = 7
enable_backup_log = true
###########
#databases#
###########
account_name = "account_name1"
password = "1234abc"
type = "Normal"
privilege = "ReadWrite"
databases = [
{
name = "dbuserv1"
character_set = "utf8"
description = "db1"
},
{
name = "dbuserv2"
character_set = "utf8"
description = "db2"
},
]
}
From the version v2.4.0, the module has removed the following provider
setting:
provider "alicloud" {
version = ">=1.64.0"
profile = var.profile != "" ? var.profile : null
shared_credentials_file = var.shared_credentials_file != "" ? var.shared_credentials_file : null
region = var.region != "" ? var.region : null
skip_region_validation = var.skip_region_validation
configuration_source = "terraform-alicloud-modules/rds"
}
If you still want to use the provider
setting to apply this module, you can specify a supported version, like 2.3.0:
module "rds" {
source = "terraform-alicloud-modules/rds/alicloud"
version = "2.3.0"
region = "cn-hangzhou"
profile = "Your-Profile-Name"
engine = "MySQL"
engine_version = "8.0"
}
If you want to upgrade the module to 2.4.0 or higher in-place, you can define a provider which same region with previous region:
provider "alicloud" {
region = "cn-hangzhou"
profile = "Your-Profile-Name"
}
module "rds" {
source = "terraform-alicloud-modules/rds/alicloud"
engine = "MySQL"
engine_version = "8.0"
}
or specify an alias provider with a defined region to the module using providers
:
provider "alicloud" {
region = "cn-hangzhou"
profile = "Your-Profile-Name"
alias = "hz"
}
module "rds" {
source = "terraform-alicloud-modules/rds/alicloud"
providers = {
alicloud = alicloud.hz
}
engine = "MySQL"
engine_version = "8.0"
}
and then run terraform init
and terraform apply
to make the defined provider effect to the existing module state.
More details see How to use provider in the module
Created and maintained by Alibaba Cloud Terraform Team(terraform@alibabacloud.com)
Apache 2 Licensed. See LICENSE for full details.