-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
50 lines (41 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
}
variable "resource_prefix" {
description = "Prefix to be added to all resource names"
type = string
}
variable "dns_name" {
description = "Instance DNS FQDN"
type = string
}
variable "environment" {
description = "'blue' or 'green' environment"
type = string
}
variable "instance_type" {
description = "The OpenStack instance flavour ID"
type = string
}
variable "public_hostname" {
description = "The FQDN of the service to be deployed"
type = string
}
variable "proxy_domain" {
description = "The WMCS domain to deploy the proxy into"
type = string
}
variable "network" {
description = "The OpenStack network to connect the instance to"
type = string
}
variable "security_groups" {
description = "A list of security group names to apply to the instance"
type = list(string)
default = ["default"]
}
variable "dns_zone_id" {
description = "The DNS zone ID to register the instance name in"
type = string
}