-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
35 lines (30 loc) · 797 Bytes
/
variables.tf
File metadata and controls
35 lines (30 loc) · 797 Bytes
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
variable "cloud_name" {
description = "Name of the cloud entry in clouds.yaml"
type = string
default = "home-cloud"
}
variable "external_network" {
description = "Name of the existing external provider network"
type = string
default = "provider-net"
}
variable "image" {
description = "Name of the image to use"
type = string
default = "cirros"
}
variable "flavor" {
description = "Name of the flavor to use"
type = string
default = "m1.tiny"
}
variable "tenant_cidr" {
description = "CIDR for the self-service tenant network"
type = string
default = "10.0.0.0/24"
}
variable "dns_nameservers" {
description = "DNS servers for the tenant subnet"
type = list(string)
default = ["8.8.8.8"]
}