Terraform module which creates VPC resources on Open Telekom Cloud (OTC).
These types of resources are supported:
This module uses the terraform-terraform-label
to implement a strict naming convention. For more information see:
This module supports Terraform 0.12 and newer.
module "vpc" {
source = "tarak/vpc/opentelekomcloud"
availability_zones = ["eu-de-01", "eu-de-02", "eu-de-03"]
cidr = "10.0.0.0/12"
gateway_ips = ["10.0.0.1", "10.4.0.1", "10.8.0.1"]
namespace = "acme"
stage = "prod"
subnets = ["10.0.0.0/16", "10.4.0.0/16", "10.8.0.0/16"]
subnets_dns_list = [
["100.125.4.25", "8.8.8.8"],
["100.125.4.25", "8.8.8.8"],
["100.125.4.25", "8.8.8.8"]
]
}
- Tarak Blah - Initial work
- Thomas Heil - Contributor