-
Notifications
You must be signed in to change notification settings - Fork 0
/
01-config.tf
57 lines (47 loc) · 1.01 KB
/
01-config.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
51
52
53
54
55
56
57
/*
Copyright 2023 Schwarz IT KG <markus.brunsch@mail.schwarz>
Copyright 2024 STACKIT GmbH & Co. KG <markus.brunsch@stackit.cloud>
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
#
# Custom User Settings
#
# OpenStack Availability Zone
variable "zone" {
type = string
description = ""
default = "eu01-m"
}
# OpenStack VM Flavor
variable "flavor" {
type = string
description = ""
default = "c1.2"
}
# Local VPC Subnet to create OpenStack Network
variable "LOCAL_SUBNET" {
type = string
description = ""
default = "10.0.0.0/24"
}
############################################
#
# System Settings (do not edit)
#
# OpenStack UAT Username
variable "USERNAME" {
type = string
description = ""
}
# OpenStack Project ID
variable "TENANTID" {
type = string
description = ""
}
# OpenStack UAT Password
variable "PASSWORD" {
type = string
description = ""
}