
module "vpc" {
source = "punkerside/vpc/aws"
version = "0.0.6"
name = "titan"
cidr_block_vpc = "10.0.0.0/16"
cidr_block_pri = ["10.0.0.0/19", "10.0.32.0/19", "10.0.64.0/19"]
cidr_block_pub = ["10.0.96.0/19", "10.0.128.0/19", "10.0.160.0/19"]
}
No modules.
| Name |
Description |
Type |
Default |
Required |
| cidr_block_pri |
Segmentos de redes privadas |
list(string) |
[ "10.0.0.0/19", "10.0.32.0/19", "10.0.64.0/19" ] |
no |
| cidr_block_pub |
Segmentos de redes publicas |
list(string) |
[ "10.0.96.0/19", "10.0.128.0/19", "10.0.160.0/19" ] |
no |
| cidr_block_vpc |
Bloque CIDR |
string |
"10.0.0.0/16" |
no |
| enable_dns_hostnames |
Activar DNS Hostname |
bool |
true |
no |
| enable_dns_support |
Soporte DNS |
bool |
true |
no |
| name |
Nombre asignado a todos los recursos creados por esta plantilla |
string |
null |
no |
- Inicializar automatizacion:
- Establecer credenciales:
export AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
export AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
- Ejecutar pruebas:
The module is maintained by Ivan Echegaray