123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- variable "vmray_worker_instance_count" {
- description = "How many workers to build. These are expensive."
- type = number
- }
- variable "vmray_server_opt_vmray_size" {
- description = "Size of /opt/vmray directory on the server."
- type = number
- default = 30 # I don't expect images here, so not much space should be required
- }
- variable "vmray_worker_opt_vmray_size" {
- description = "Size of /opt/vmray directory on the worker nodes"
- type = number
- default = 300 # Stores images, which are ~ 25GB each
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "vpc_info" {
- description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
- type = map
- }
- variable "instance_types" { type = map }
- variable "instance_termination_protection" { type = bool }
- variable "standard_tags" { type = map }
- variable "dns_info" { type = map }
- variable "environment" { type = string }
- variable "portal_test_whitelist" { type = list }
- variable "trusted_ips" { type = list(string) }
- variable "proxy" { type = string }
- variable "salt_master" { type = string }
- variable "cidr_map" { type = map }
- variable "aws_region" { type = string }
- variable "aws_partition" { type = string }
- variable "aws_partition_alias" { type = string }
- variable "aws_account_id" { type = string }
- variable "vpc_id" { type = string }
- variable "azs" { type = list(string) }
- variable "public_subnets" { type = list(string) }
- variable "private_subnets" { type = list(string) }
- variable "common_services_account" { type = string }
- variable "c2_accounts" { type = map }
|