123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- variable "vmray_server_instance_type" {
- description = "Instance type for the controlling server."
- type = string
- }
- variable "vmray_worker_instance_type" {
- description = "Instance type for the worker(s). Must be a bare metal instance type."
- type = string
- }
- variable "vmray_worker_instance_count" {
- description = "How many workers to build. These are expensive."
- type = number
- }
- variable "vmray_key_name" {
- description = "Provisioning key for new instance. Will be cleaned up via salt. Do not change after initial provisioning."
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- variable "instance_termination_protection" { type = bool }
- variable "standard_tags" { type = map }
- variable "dns_info" { type = map }
- variable "aws_marketplace_ubuntu_owner_id" { type = string }
- variable "environment" { type = string }
- variable "portal_test_whitelist" { type = list }
- # ----------------------------------
- # Required for remote state, though they can be used elsewhere
- # TODO: Use terragrunt dependencies instead
- variable "remote_state_bucket" { type = string }
- variable "aws_region" { type = string }
- variable "aws_partition" { type = string }
- variable "common_services_account" { type = string }
- variable "common_profile" { type = string }
|