-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path01-config.tf
More file actions
45 lines (39 loc) · 909 Bytes
/
01-config.tf
File metadata and controls
45 lines (39 loc) · 909 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
36
37
38
39
40
41
42
43
44
45
/*
Copyright 2023 Schwarz IT KG <markus.brunsch@mail.schwarz>
Copyright 2024-2025 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
#
# STACKIT Availability Zone
variable "zone" {
type = string
description = ""
default = "eu01-m"
}
# STACKIT VM Flavor
variable "flavor" {
type = string
description = ""
default = "c1.2"
}
# Local VPC Subnet to create Network
variable "LOCAL_SUBNET" {
type = string
description = ""
default = "10.10.0.0/24"
}
variable "LOCAL_FIREWALL_IP" {
type = string
description = ""
default = "10.10.0.220"
}
# STACKIT ProjectID
variable "STACKIT_PROJECT_ID" {
type = string
description = "STACKIT Project ID"
default = ""
}