scottslowe-learning-tools/terraform/aws/vpc-all-azs/variables.tf
Scott Lowe 525db796e6
Commit multi-AZ Terraform configurations
Commit a set of Terraform configurations that support multi-AZ deployments

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-21 23:28:51 -06:00

24 lines
681 B
HCL

variable "user_region" {
type = "string"
description = "AWS region to use for new resources"
}
variable "assigned_cidr" {
type = "string"
description = "CIDR block to use for VPC and subnets"
}
variable "node_type" {
type = "string"
description = "Type of instance to launch (such as t2.micro)"
}
variable "key_pair" {
type = "string"
description = "SSH keypair to inject into launched instances"
}
variable "num_nodes" {
type = "string"
description = "Number of nodes to launch"
}