Alibaba Cloud Table Store (OTS) Terraform Module terraform-alicloud-table-store
English | 简体中文
Terraform module which creates set of Table Store resources including instance, instance attachment(bind vpc), table.
These types of resources are supported:
module "ots" {
source = "terraform-alicloud-modules/table-store/alicloud"
instance_name = "tf-ots-instance"
description = "tf-ots-instance"
accessed_by = "Any"
instance_type = "HighPerformance"
tags = {
Created = "TF"
For = "Building table"
}
vpc_name = "default"
vswitch_id = "vsw-1q214xxxx"
table_name = "tf_ots_table"
primary_key = [
{
name = "pk1"
type = "Integer"
},
{
name = "pk2"
type = "Integer"
},
{
name = "pk3"
type = "Binary"
},
{
name = "pk4"
type = "String"
},
]
time_to_live = -1
max_version = 1
}
From the version v1.2.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/table-store"
}
If you still want to use the provider
setting to apply this module, you can specify a supported version, like 1.1.0:
module "ots" {
source = "terraform-alicloud-modules/table-store/alicloud"
version = "1.1.0"
region = "cn-hangzhou"
profile = "Your-Profile-Name"
instance_name = "tf-ots-instance"
// ...
}
If you want to upgrade the module to 1.2.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 "ots" {
source = "terraform-alicloud-modules/table-store/alicloud"
instance_name = "tf-ots-instance"
// ...
}
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 "ots" {
source = "terraform-alicloud-modules/table-store/alicloud"
providers = {
alicloud = alicloud.hz
}
instance_name = "tf-ots-instance"
// ...
}
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
Name | Version |
---|---|
terraform | >= 0.13.0 |
alicloud | >= 1.56.0 |
Name | Version |
---|---|
alicloud | >= 1.56.0 |
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.
Created and maintained by Alibaba Cloud Terraform Team(terraform@alibabacloud.com)
Apache 2 Licensed. See LICENSE for full details.