English | 简体中文
A terraform module used to create an Alibaba Cloud VPC, several VSwitches and configure route entry.
vswitch_cidrs
.destination_cidrs
availability_zones
is less than the length of vswitch_cidrs
, availability_zones
item will be used repeatedly.The following resources are supported:
module "vpc" {
source = "alibaba/vpc/alicloud"
create = true
vpc_name = "my-env-vpc"
vpc_cidr = "10.10.0.0/16"
resource_group_id = "rg-acfmwvvtg5o****"
availability_zones = ["cn-hangzhou-e", "cn-hangzhou-f", "cn-hangzhou-g"]
vswitch_cidrs = ["10.10.1.0/24", "10.10.2.0/24", "10.10.3.0/24"]
vpc_tags = {
Owner = "user"
Environment = "staging"
Name = "complete"
}
vswitch_tags = {
Project = "Secret"
Endpoint = "true"
}
destination_cidrs = var.destination_cidrs
nexthop_ids = var.server_ids
}
From the version v1.9.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/vpc"
}
If you still want to use the provider
setting to apply this module, you can specify a supported version, like 1.8.0:
module "vpc" {
source = "alibaba/vpc/alicloud"
version = "1.8.0"
region = "cn-hangzhou"
profile = "Your-Profile-Name"
create = true
vpc_name = "my-env-vpc"
// ...
}
If you want to upgrade the module to 1.9.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 "vpc" {
source = "alibaba/vpc/alicloud"
create = true
vpc_name = "my-env-vpc"
// ...
}
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 "vpc" {
source = "alibaba/vpc/alicloud"
providers = {
alicloud = alicloud.hz
}
create = true
vpc_name = "my-env-vpc"
// ...
}
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 |
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.