terraform/modules/aws-vpc/variables.tf (24 lines of code) (raw):
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
variable "az_a_count" {
description = "Count of nodes in availability zone A"
default = 1
}
variable "az_b_count" {
description = "Count of nodes in availability zone B"
default = 1
}
variable "backup_node" {
description = "Boolean indicating if a backup node should be created"
default = 0
}
variable "cidr_block" {
description = "CIDR block for the VPC"
}
variable "metadata_bucket_name" {
description = "Name of the metadata bucket"
}
variable "mirror_ami" {
description = "AMI ID for mirror instances"
}
variable "taskcluster_vpc_cidr" {
description = "CIDR block of the Taskcluster VPC in the same AWS region"
}