-
Notifications
You must be signed in to change notification settings - Fork 15
/
vars.tf
54 lines (39 loc) · 842 Bytes
/
vars.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
variable "compartment_ocid" {
}
variable "region" {
}
variable "availability_domain" {
}
variable "PATH_TO_PUBLIC_KEY" {
type = string
default = "~/.ssh/id_rsa.pub"
description = "Path to your public key"
}
variable "environment" {
type = string
}
variable "is_private" {
type = bool
default = false
}
variable "public_subnet_id" {
type = string
}
variable "private_subnet_id" {
type = string
}
variable "default_fault_domain" {
default = "FAULT-DOMAIN-1"
}
variable "os_image_id" {
default = "ocid1.image.oc1.eu-zurich-1.aaaaaaaabt5i2qa7sdt65orrb66anzyljybm3furr2q7ykxodt5zmfxqbyzq" # Canonical-Ubuntu-22.04-aarch64-2023.07.20-0
}
variable "shape" {
default = "VM.Standard.A1.Flex" # VM.Standard.E2.1.Micro
}
variable "memory_in_gbs" {
default = "6"
}
variable "ocpus" {
default = "1"
}