-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (27 loc) · 918 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
variable "image_name" {
description = "Name of the OpenStack image to deploy. Changes to this value will *not* trigger a rebuild of the instance."
type = string
default = "debian-12.0-bookworm"
}
variable "resource_prefix" {
description = "Prefix applied to all resources"
type = string
default = "accounts-"
}
variable "instance_name" {
description = "Name of the instance (not including the prefix)"
type = string
}
variable "dns_zone" {
description = "The DNS zone name to register the instance name in"
type = string
}
variable "environment" {
description = "The environment this instance belongs to. Probably should be 'blue' or 'green' to match module names"
type = string
}
variable "security_groups" {
description = "A list of additional security group names to apply to the instance"
type = list(string)
default = []
}