Skip to content

alibabacloud-automation/terraform-alicloud-analyticdb-mysql

Repository files navigation

Terraform module which creates a ADB cluster on Alibaba Cloud.
terraform-alicloud-analyticdb-mysql

English | 简体中文

Terraform module which creates ADB cluster resources on Alibaba Cloud

These types of resources are supported:


Usage

You can use this in your terraform template with the following steps.

Adding a module resource to your template, e.g. main.tf

module "adb" {
  source               = "terraform-alicloud-modules/analyticdb-mysql/alicloud"
  #################
  # ADB Cluster
  #################
  db_cluster_version     = "3.0"
  db_cluster_category    = "Cluster"
  db_node_class          = "C8"
  db_node_count          = 2
  db_node_storage        = 200
  pay_type               = "PostPaid"
  vswitch_id             = "vsw-wz9dtqayzctoqh*******"
  description            = "tf-module-adb"
  availability_zone      = "cn-shenzhen-e"
}

Examples

Notes

From the version v1.1.0, the module has removed the following provider setting:

provider "alicloud" {
  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/analyticdb-mysql"
}

If you still want to use the provider setting to apply this module, you can specify a supported version, like 1.0.0:

module "adb" {
  source             = "terraform-alicloud-modules/analyticdb-mysql/alicloud"
  version            = "1.0.0"
  region             = "cn-shenzhen"
  profile            = "Your-Profile-Name"
  db_cluster_version = "3.0"
  pay_type           = "PostPaid"
  // ...
}

If you want to upgrade the module to 1.1.0 or higher in-place, you can define a provider which same region with previous region:

provider "alicloud" {
  region  = "cn-shenzhen"
  profile = "Your-Profile-Name"
}
module "adb" {
  source             = "terraform-alicloud-modules/analyticdb-mysql/alicloud"
  db_cluster_version = "3.0"
  pay_type           = "PostPaid"
  // ...
}

or specify an alias provider with a defined region to the module using providers:

provider "alicloud" {
  region  = "cn-shenzhen"
  profile = "Your-Profile-Name"
  alias   = "sz"
}
module "adb" {
  source             = "terraform-alicloud-modules/analyticdb-mysql/alicloud"
  providers          = {
    alicloud = alicloud.sz
  }
  db_cluster_version = "3.0"
  pay_type           = "PostPaid"
  // ...
}

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

Terraform versions

Name Version
terraform >= 0.13.0
alicloud >= 1.71.0

Submit Issues

If you have any problems when using this module, please opening a provider issue and let us know.

Note: There does not recommend to open an issue on this repo.

Authors

Created and maintained by Alibaba Cloud Terraform Team([email protected])

License

Apache 2 Licensed. See LICENSE for full details.

Reference