Giter Club home page Giter Club logo

terraform-alicloud-vpc's Introduction

Alicloud VPC, VSwitch and Route Entry Terraform Module terraform-alicloud-vpc

English | 简体中文

A terraform module used to create an Alibaba Cloud VPC, several VSwitches and configure route entry.

  • The module contains one VPC, several VSwitches and several custom route entries.
  • If VPC is not specified, the module will launch a new one using default parameters.
  • The number of VSwitch depends on the length of the parameter vswitch_cidrs.
  • The number of custom route entry depends on the length of the parameter destination_cidrs
  • Each VSwitch needs an availability zone. If the length of availability_zones is less than the length of vswitch_cidrs, availability_zones item will be used repeatedly.

The following resources are supported:

Usage

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
}

Examples

Notes

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

Terraform versions

Name Version
terraform >= 0.13.0
alicloud >= 1.56.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

terraform-alicloud-vpc's People

Contributors

xiaozhu36 avatar zql-tqy avatar lexsss avatar alibaba-oss avatar andyzhang495 avatar wanghx0991 avatar mrwolong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.